Warning: Using this property can lead to race conditions if you access another property subsequently along the refresh boundary. Please use get_frozen_credentials instead.
(self)
| 491 | |
| 492 | @property |
| 493 | def token(self): |
| 494 | """Warning: Using this property can lead to race conditions if you |
| 495 | access another property subsequently along the refresh boundary. |
| 496 | Please use get_frozen_credentials instead. |
| 497 | """ |
| 498 | self._refresh() |
| 499 | return self._token |
| 500 | |
| 501 | @token.setter |
| 502 | def token(self, value): |