Skip to content

PHP 8.1 - Uncaught TypeError: Dapr\Client\DaprHttpClient::tryDeleteStateAsync() #131

Description

@madhancock

Getting the above type error when invoking DaprClient->deleteState().

The implementation for this in Dapr\Client\HttpStateTrait calls deleteStateAsync which in turn calls tryDeleteStateAsync - triggering the error. This is caused by tryDeleteStateAsync requiring an eTag, which is defined as a string and isn't nullable - yet null is passed in this instance.

image

There are some other type errors in that file too but in my scenario I've only run into the issue with deleteState. The workaround seems to be to used only the tryDeleteState functions, and provide an eTag.

Updating the definition of tryDeleteStateAsync to have string $etag = null, solves the problem and appears to be the intended definition.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions