Skip to content

Commit 42b9b81

Browse files
authored
Merge pull request #657 from caphrim007/bugfix.requests-2.11-support
Make transaction IDs strings to work with python requests 2.11
2 parents 8586a52 + ff5f205 commit 42b9b81

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

f5/bigip/contexts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def __enter__(self):
5050
self.transaction = self.transaction.create()
5151

5252
self.icr.session.headers.update({
53-
'X-F5-REST-Coordination-Id': self.transaction.transId
53+
'X-F5-REST-Coordination-Id': str(self.transaction.transId)
5454
})
5555
return self.bigip
5656

0 commit comments

Comments
 (0)