[async tasks] remove task if there is a backend 500 error

parent 663a4b58
Pipeline #6235 failed with stages
...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment