We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d8c1ea commit 19764b3Copy full SHA for 19764b3
backend/metadata_writer/src/metadata_writer.py
@@ -19,7 +19,6 @@
19
import collections
20
import kubernetes
21
import yaml
22
-import urllib3
23
from time import sleep
24
import lru
25
@@ -400,7 +399,9 @@ def is_kfp_v2_pod(pod) -> bool:
400
399
# If the for loop ended, a server-side timeout occurred. Continue watching.
401
pass
402
403
- except urllib3.exceptions.ReadTimeoutError as e:
404
- # Client side timeout, continue watching.
+ except Exception as e:
+ # Client side timeout, print stack trace and continue watching.
+ import traceback
405
+ print(traceback.format_exc())
406
continue
407
0 commit comments