@danhachuel/thunderbolt 0.4.39 → 0.4.40
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.
|
@@ -225,7 +225,7 @@ def acquire_nvidia_rpm_slot(
|
|
|
225
225
|
|
|
226
226
|
|
|
227
227
|
def _status_category(status_code: int) -> tuple[str, bool]:
|
|
228
|
-
if status_code
|
|
228
|
+
if status_code in {402, 429}:
|
|
229
229
|
return "quota", True
|
|
230
230
|
if status_code in {408, 425} or status_code >= 500:
|
|
231
231
|
return "transient", True
|
package/package.json
CHANGED