flyte 0.2.0b34__py3-none-any.whl → 0.2.0b35__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of flyte might be problematic. Click here for more details.
- flyte/_version.py +2 -2
- flyte/remote/_client/auth/_keyring.py +9 -0
- {flyte-0.2.0b34.dist-info → flyte-0.2.0b35.dist-info}/METADATA +1 -1
- {flyte-0.2.0b34.dist-info → flyte-0.2.0b35.dist-info}/RECORD +8 -8
- {flyte-0.2.0b34.data → flyte-0.2.0b35.data}/scripts/runtime.py +0 -0
- {flyte-0.2.0b34.dist-info → flyte-0.2.0b35.dist-info}/WHEEL +0 -0
- {flyte-0.2.0b34.dist-info → flyte-0.2.0b35.dist-info}/entry_points.txt +0 -0
- {flyte-0.2.0b34.dist-info → flyte-0.2.0b35.dist-info}/top_level.txt +0 -0
flyte/_version.py
CHANGED
|
@@ -17,5 +17,5 @@ __version__: str
|
|
|
17
17
|
__version_tuple__: VERSION_TUPLE
|
|
18
18
|
version_tuple: VERSION_TUPLE
|
|
19
19
|
|
|
20
|
-
__version__ = version = '0.2.
|
|
21
|
-
__version_tuple__ = version_tuple = (0, 2, 0, '
|
|
20
|
+
__version__ = version = '0.2.0b35'
|
|
21
|
+
__version_tuple__ = version_tuple = (0, 2, 0, 'b35')
|
|
@@ -81,6 +81,8 @@ class KeyringStore:
|
|
|
81
81
|
)
|
|
82
82
|
except NoKeyringError as e:
|
|
83
83
|
logger.debug(f"KeyRing not available, tokens will not be cached. Error: {e}")
|
|
84
|
+
except Exception as e:
|
|
85
|
+
logger.debug(f"Failed to store tokens in keyring. Error: {e}")
|
|
84
86
|
return credentials
|
|
85
87
|
|
|
86
88
|
@staticmethod
|
|
@@ -102,6 +104,9 @@ class KeyringStore:
|
|
|
102
104
|
except NoKeyringError as e:
|
|
103
105
|
logger.debug(f"KeyRing not available, tokens will not be cached. Error: {e}")
|
|
104
106
|
return None
|
|
107
|
+
except Exception as e:
|
|
108
|
+
logger.debug(f"Failed to retrieve tokens from keyring. Error: {e}")
|
|
109
|
+
return None
|
|
105
110
|
|
|
106
111
|
if not access_token:
|
|
107
112
|
logger.debug("No access token found in keyring.")
|
|
@@ -138,6 +143,10 @@ class KeyringStore:
|
|
|
138
143
|
logger.debug(f"Key {key} not found in key store, Ignoring. Error: {e}")
|
|
139
144
|
except NoKeyringError as e:
|
|
140
145
|
logger.debug(f"KeyRing not available, Key {key} deletion failed. Error: {e}")
|
|
146
|
+
except NotImplementedError as e:
|
|
147
|
+
logger.debug(f"Key {key} deletion not implemented in keyring backend. Error: {e}")
|
|
148
|
+
except Exception as e:
|
|
149
|
+
logger.debug(f"Failed to delete key {key} from keyring. Error: {e}")
|
|
141
150
|
|
|
142
151
|
_delete_key(KeyringStore._access_token_key)
|
|
143
152
|
_delete_key(KeyringStore._refresh_token_key)
|
|
@@ -25,7 +25,7 @@ flyte/_task_plugins.py,sha256=9MH3nFPOH_e8_92BT4sFk4oyAnj6GJFvaPYWaraX7yE,1037
|
|
|
25
25
|
flyte/_timeout.py,sha256=zx5sFcbYmjJAJbZWSGzzX-BpC9HC7Jfs35T7vVhKwkk,1571
|
|
26
26
|
flyte/_tools.py,sha256=tWb0sx3t3mm4jbaQVjCTc9y39oR_Ibo3z_KHToP3Lto,966
|
|
27
27
|
flyte/_trace.py,sha256=C788bgoSc3st8kE8Cae2xegnLx2CT6uuRKKfaDrDUys,5122
|
|
28
|
-
flyte/_version.py,sha256=
|
|
28
|
+
flyte/_version.py,sha256=pB9K_t6bpJZ4ijf8fuuBAprudGF66FEfi-NPrLQ6HH4,521
|
|
29
29
|
flyte/errors.py,sha256=3PCjGAxqifLBY6RE1n_ttmrmhcHwwtzS4UWDPql-FX4,5175
|
|
30
30
|
flyte/extend.py,sha256=GB4ZedGzKa30vYWRVPOdxEeK62xnUVFY4z2tD6H9eEw,376
|
|
31
31
|
flyte/models.py,sha256=k0hLoyOYQHnu5DXclEtKK2owDOXCdy0UKdGcl3xR7BQ,15250
|
|
@@ -196,7 +196,7 @@ flyte/remote/_client/auth/_auth_utils.py,sha256=Is6mr18J8AMQlbtu-Q63aMJgrZ27dXXN
|
|
|
196
196
|
flyte/remote/_client/auth/_channel.py,sha256=HoVyxgjij1xNBXvQvQRRF0Gy0OU-7QHdl0jXRA6fq0o,9455
|
|
197
197
|
flyte/remote/_client/auth/_client_config.py,sha256=Elit5TCLjMQDiktiUmMKy2POWwwb5rKgIXfG3-rpfbs,3304
|
|
198
198
|
flyte/remote/_client/auth/_default_html.py,sha256=XAdgP-25WySMODbusWOcQQPiXin1h-hfzmRJv_Dg3tE,1651
|
|
199
|
-
flyte/remote/_client/auth/_keyring.py,sha256=
|
|
199
|
+
flyte/remote/_client/auth/_keyring.py,sha256=hJ2FxFdi5_FaKLcuqhelxj6Hc1WYQrez4c47qSl5c5A,5681
|
|
200
200
|
flyte/remote/_client/auth/_token_client.py,sha256=FxFaG_DcynQIZfEdAuJUsrcy0OnYbEr4gKLpu8WZHJo,10460
|
|
201
201
|
flyte/remote/_client/auth/errors.py,sha256=ZYS9k4GX_McacKhxHKt5V2A4CWjLUq4RkBx_goDTdHY,390
|
|
202
202
|
flyte/remote/_client/auth/_authenticators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -226,9 +226,9 @@ flyte/types/_renderer.py,sha256=ygcCo5l60lHufyQISFddZfWwLlQ8kJAKxUT_XnR_6dY,4818
|
|
|
226
226
|
flyte/types/_string_literals.py,sha256=NlG1xV8RSA-sZ-n-IFQCAsdB6jXJOAKkHWtnopxVVDk,4231
|
|
227
227
|
flyte/types/_type_engine.py,sha256=Tas_OXYddOi0nDuORjqan2SkJ96wKD8937I2l1bo8vk,97916
|
|
228
228
|
flyte/types/_utils.py,sha256=pbts9E1_2LTdLygAY0UYTLYJ8AsN3BZyviSXvrtcutc,2626
|
|
229
|
-
flyte-0.2.
|
|
230
|
-
flyte-0.2.
|
|
231
|
-
flyte-0.2.
|
|
232
|
-
flyte-0.2.
|
|
233
|
-
flyte-0.2.
|
|
234
|
-
flyte-0.2.
|
|
229
|
+
flyte-0.2.0b35.data/scripts/runtime.py,sha256=2jTy3ccvrJ__Xrfdo2t0Fxhsojc5o2zIxDHt98RE_eU,6475
|
|
230
|
+
flyte-0.2.0b35.dist-info/METADATA,sha256=BUMr4nE85BYanq5okRmLS2pt-9MB27YcBwg0vlJD3Qw,5857
|
|
231
|
+
flyte-0.2.0b35.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
232
|
+
flyte-0.2.0b35.dist-info/entry_points.txt,sha256=MIq2z5dBurdCJfpXfMKzgBv7sJOakKRYxr8G0cMiTrg,75
|
|
233
|
+
flyte-0.2.0b35.dist-info/top_level.txt,sha256=7dkyFbikvA12LEZEqawx8oDG1CMod6hTliPj7iWzgYo,6
|
|
234
|
+
flyte-0.2.0b35.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|