Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
purescript-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
131
Issues
131
List
Board
Labels
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
purescript-gargantext
Commits
e908119b
Verified
Commit
e908119b
authored
Jun 17, 2024
by
Przemyslaw Kaminski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[async tasks] remove task if there is a backend 500 error
parent
663a4b58
Pipeline
#6235
failed with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
Progress.purs
src/Gargantext/Context/Progress.purs
+11
-1
No files found.
src/Gargantext/Context/Progress.purs
View file @
e908119b
...
@@ -11,6 +11,7 @@ import Effect (Effect)
...
@@ -11,6 +11,7 @@ import Effect (Effect)
import Effect.Aff (Aff, launchAff_)
import Effect.Aff (Aff, launchAff_)
import Effect.Class (liftEffect)
import Effect.Class (liftEffect)
import Effect.Timer (IntervalId, clearInterval, setInterval)
import Effect.Timer (IntervalId, clearInterval, setInterval)
import Gargantext.AsyncTasks as GAT
import Gargantext.Components.App.Store as AppStore
import Gargantext.Components.App.Store as AppStore
import Gargantext.Components.Forest.Tree.Node.Tools.ProgressBar (QueryProgressData, queryProgress)
import Gargantext.Components.Forest.Tree.Node.Tools.ProgressBar (QueryProgressData, queryProgress)
import Gargantext.Components.Notifications as Notifications
import Gargantext.Components.Notifications as Notifications
...
@@ -41,7 +42,7 @@ asyncProgress = R2.component asyncProgressCpt
...
@@ -41,7 +42,7 @@ asyncProgress = R2.component asyncProgressCpt
asyncProgressCpt :: R.Component AsyncProps
asyncProgressCpt :: R.Component AsyncProps
asyncProgressCpt = R2.hereComponent here "asyncProgress" hCpt where
asyncProgressCpt = R2.hereComponent here "asyncProgress" hCpt where
hCpt hp props@{ onFinish } children = do
hCpt hp props@{ onFinish } children = do
{ errors, wsNotification } <- AppStore.use
{ errors,
tasks,
wsNotification } <- AppStore.use
-- States
-- States
progress /\ progressBox <- R2.useBox' 0.0
progress /\ progressBox <- R2.useBox' 0.0
...
@@ -57,6 +58,7 @@ asyncProgressCpt = R2.hereComponent here "asyncProgress" hCpt where
...
@@ -57,6 +58,7 @@ asyncProgressCpt = R2.hereComponent here "asyncProgress" hCpt where
eAsyncProgress <- queryProgress rdata
eAsyncProgress <- queryProgress rdata
liftEffect $ here.log2 "[progress] received asyncProgress" eAsyncProgress
liftEffect $ here.log2 "[progress] received asyncProgress" eAsyncProgress
-- exponential backoff in case of errors
-- exponential backoff in case of errors
-- liftEffect $ do
-- liftEffect $ do
-- case eAsyncProgress of
-- case eAsyncProgress of
...
@@ -64,6 +66,14 @@ asyncProgressCpt = R2.hereComponent here "asyncProgress" hCpt where
...
@@ -64,6 +66,14 @@ asyncProgressCpt = R2.hereComponent here "asyncProgress" hCpt where
-- Right _ -> T.write_ 1000 interval
-- Right _ -> T.write_ 1000 interval
-- interval' <- T.read interval
-- interval' <- T.read interval
-- resetInterval intervalIdRef (Just interval') exec
-- resetInterval intervalIdRef (Just interval') exec
-- Handle removal of task in case of 500 error (e.g. server
-- was restarted and task id is not found anymore).
-- Error logging will be done below, in handleRESTError
case eAsyncProgress of
Right _ -> pure unit
Left _err -> liftEffect $ GAT.finish props.nodeId props.asyncTask tasks
handleRESTError hp errors eAsyncProgress onProgress
handleRESTError hp errors eAsyncProgress onProgress
exec (Just jobProgress) = do
exec (Just jobProgress) = do
launchAff_ $ onProgress jobProgress
launchAff_ $ onProgress jobProgress
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment