Skip to content

Commit f572daf

Browse files
committed
roll back with the weakref for CI testing
1 parent 60316c0 commit f572daf

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

botocore/signers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import base64
1414
import datetime
1515
import json
16+
import weakref
1617

1718
import botocore
1819
import botocore.auth
@@ -84,7 +85,7 @@ def __init__(
8485
self._auth_token = auth_token
8586
self._service_id = service_id
8687

87-
self._event_emitter = event_emitter
88+
self._event_emitter = weakref.proxy(event_emitter)
8889

8990
@property
9091
def region_name(self):

0 commit comments

Comments
 (0)