We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18e5901 commit f7ddbbaCopy full SHA for f7ddbba
1 file changed
client/src/main/java/com/microsoft/durabletask/DurableTaskGrpcWorker.java
@@ -87,6 +87,7 @@ public void start() {
87
* configured.
88
*/
89
public void close() {
90
+ this.isNormalShutdown = true;
91
this.shutDownWorkerPool();
92
this.closeSideCarChannel();
93
}
@@ -219,7 +220,6 @@ public void startAndBlock() {
219
220
* Stops the current worker's listen loop, preventing any new orchestrator or activity events from being processed.
221
222
public void stop() {
- this.isNormalShutdown = true;
223
this.close();
224
225
0 commit comments