diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-28 10:18:25 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-28 10:18:25 +0200 |
| commit | 3a8d99c5e4f64a9426585943c40635eb183b47ae (patch) | |
| tree | d09bc57d59ec0ff7a6def8af49634c4aab64e493 /app/client/system/system.reducer.js | |
| parent | ed80103ff0c4b87d2726da5ceab8ec566b46e0ee (diff) | |
start/stop tasks
Diffstat (limited to 'app/client/system/system.reducer.js')
| -rw-r--r-- | app/client/system/system.reducer.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/client/system/system.reducer.js b/app/client/system/system.reducer.js index c29572e..f945a65 100644 --- a/app/client/system/system.reducer.js +++ b/app/client/system/system.reducer.js @@ -21,7 +21,7 @@ const systemInitialState = { }, rpc: { connected: false, - status: "unknown", + status: "disconnected", error: null, }, cmd: { @@ -169,6 +169,11 @@ const systemReducer = (state = systemInitialState, action) => { } return { ...state, + rpc: { + connected: false, + status: "disconnected", + error: null, + }, runner: { ...state.runner, [action.task.processor]: { status: 'IDLE', task: {} }, |
