We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd84bbe commit 97308b1Copy full SHA for 97308b1
sdk/core/azure-mgmt-core/azure/mgmt/core/policies/__init__.py
@@ -47,6 +47,10 @@ class ARMHttpLoggingPolicy(HttpLoggingPolicy):
47
"x-ms-request-charge",
48
])
49
50
+ def __init__(self, logger=None, **kwargs):
51
+ super(ARMHttpLoggingPolicy, self).__init__(logger=None, **kwargs)
52
+ self.allowed_header_names = set(ARMHttpLoggingPolicy.DEFAULT_HEADERS_WHITELIST)
53
+
54
55
__all__ = ["ARMAutoResourceProviderRegistrationPolicy", "ARMHttpLoggingPolicy"]
56
0 commit comments