mirror of https://github.com/dapr/java-sdk.git
deactivate should not call save (#108)
Co-authored-by: Artur Souza <artursouza.ms@outlook.com>
This commit is contained in:
parent
df99cc7345
commit
0fed4fe76e
|
@ -279,8 +279,7 @@ public abstract class AbstractActor {
|
|||
|
||||
return Mono.fromRunnable(() -> this.resetState())
|
||||
.then(this.onDeactivate())
|
||||
.then(this.doWriteInfo(TRACE_TYPE, this.id.toString(), "Deactivated"))
|
||||
.then(this.saveState());
|
||||
.then(this.doWriteInfo(TRACE_TYPE, this.id.toString(), "Deactivated"));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue