Skip to content

Commit b371e8d

Browse files
committed
Handle authentication error correctly
1 parent 697c70c commit b371e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chipflow_lib/steps/silicon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def network_err(e):
201201
except requests.ConnectionError as e:
202202
if type(e.__context__) is urllib3.exceptions.MaxRetryError:
203203
network_err(e)
204-
except requests.exceptions.ReadTimeout as e:
204+
except Exception as e:
205205
network_err(e)
206206

207207
assert resp

0 commit comments

Comments
 (0)