Fixing Recursive call for delete state only with key (#166)

This commit is contained in:
Andres Robles 2020-01-29 11:10:51 -06:00 committed by GitHub
parent 50675532b2
commit dfb3af58a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -307,7 +307,7 @@ public class DaprClientHttpAdapter implements DaprClient {
*/
@Override
public Mono<Void> deleteState(String key) {
return this.deleteState(key);
return this.deleteState(key, null, null);
}
/**