Default value of `persist_state_kvs_name` in `Statistics` and `SessionPool` causes the use of a named storage on Apify
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
KeyValueStoreinstance instead - accept a type that distinguishes names/IDs/nothing - kinda verbose in Python
Note - after #809, this change will be easier to do consistently.