Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions backend/metadata_writer/src/metadata_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
import collections
import kubernetes
import yaml
import urllib3
from time import sleep
import lru

Expand Down Expand Up @@ -400,7 +399,9 @@ def is_kfp_v2_pod(pod) -> bool:
# If the for loop ended, a server-side timeout occurred. Continue watching.
pass

except urllib3.exceptions.ReadTimeoutError as e:
# Client side timeout, continue watching.
except Exception as e:
# Handle any errors, print stack trace, and continue watching.
import traceback
print(traceback.format_exc())
continue

Loading