Skip to content

Commit 0b8fd9c

Browse files
committed
Report crc stop status after stop command exits
Fixes #1961 Signed-off-by: Denis Golovin [email protected]
1 parent e7eaf1b commit 0b8fd9c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/view/cluster/clusterViewLoader.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ export default class ClusterViewLoader {
100100
});
101101
stopProcess.stderr.on('data', (chunk) => {
102102
channel.append(chunk);
103-
panel.webview.postMessage({action: 'sendcrcstoperror', data: chunk})
104103
});
105104
stopProcess.on('close', async (code) => {
106105
// eslint-disable-next-line no-console
@@ -178,4 +177,4 @@ export default class ClusterViewLoader {
178177
.replace('%BASE_URL%', `${reactAppUri}`)
179178
.replace('<!-- meta http-equiv="Content-Security-Policy" -->', meta);
180179
}
181-
}
180+
}

0 commit comments

Comments
 (0)