I need to run multiple clients with different configurations. As I understand the current implementation the configuration is a "global" singleton class. Hence, each instance of Client uses the same Instnace of Configuration. With this pull request, I tried to fix that without breaking the original API.
I need to run multiple clients with different configurations. As I understand the current implementation the configuration is a "global" singleton class. Hence, each instance of
Client
uses the same Instnace ofConfiguration
. With this pull request, I tried to fix that without breaking the original API.