You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default value of the argument is "default", but it is used like this: KeyValueStore.open(name=persist_state_kvs_name), which opens a named storage called "default" when running on Apify.
Possible solutions
accept a pre-opened KeyValueStore instance instead
accept a type that distinguishes names/IDs/nothing - kinda verbose in Python
Note - after #809, this change will be easier to do consistently.
The text was updated successfully, but these errors were encountered:
The default value of the argument is
"default"
, but it is used like this:KeyValueStore.open(name=persist_state_kvs_name)
, which opens a named storage called "default" when running on Apify.Possible solutions
KeyValueStore
instance insteadNote - after #809, this change will be easier to do consistently.
The text was updated successfully, but these errors were encountered: