Skip to content

Commit 2e24770

Browse files
authored
Revert "Added Consistency Level as required for some calls"
1 parent 7da8aab commit 2e24770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msgraphcore/middleware/authorization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def __init__(self, credential: TokenCredential, scopes: [str]):
1212
self.retry_count = 0
1313

1414
def send(self, request, **kwargs):
15-
request.headers.update({'Authorization': 'Bearer {}'.format(self._get_access_token()), 'ConsistencyLevel': 'eventual'})
15+
request.headers.update({'Authorization': 'Bearer {}'.format(self._get_access_token())})
1616
response = super().send(request, **kwargs)
1717

1818
# Token might have expired just before transmission, retry the request one more time

0 commit comments

Comments
 (0)