We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17b6d2f commit 6b9b8acCopy full SHA for 6b9b8ac
1 file changed
splitio/push/manager.py
@@ -143,7 +143,8 @@ def _trigger_connection_flow(self):
143
self._feedback_loop.put(Status.PUSH_RETRYABLE_ERROR)
144
return
145
146
- if not token.push_enabled:
+
147
+ if token is None or not token.push_enabled:
148
self._feedback_loop.put(Status.PUSH_NONRETRYABLE_ERROR)
149
150
self._telemetry_runtime_producer.record_token_refreshes()
0 commit comments