blob: c9a49a737728972fa49471a9a08ff142eca673e7 [file] [log] [blame]
Andrea Frittolicad70e22017-08-16 13:19:04 +01001---
2upgrade:
3 - |
4 Replace any call in your code to credentials_factory.DEFAULT_PARAMS with
5 a call to config.service_client_config().
6fixes:
7 - |
8 The credentials_factory module used to load configuration at import time
9 which caused configuration being loaded at test discovery time.
10 This was fixed by removing the DEFAULT_PARAMS variable. This variable
11 was redundant (and outdated), the same dictionary (but up to date) can
12 be obtained via invoking config.service_client_config() with no service
13 parameter.