Skip to content

Commit

Permalink
Don't break.
Browse files Browse the repository at this point in the history
  • Loading branch information
NotChristianGarcia authored Feb 27, 2024
1 parent 3ee0aa5 commit 5e717fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions service/kubernetes_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ def create_pvc(name):
except Exception as e:
msg = f"Got exception trying to start pvc with name: {name}. {e}"
logger.info(msg)
raise KubernetesError(msg)
#raise KubernetesError(msg)
logger.info(f"Pod pvc started successfully.")
return k8_pvc

Expand Down Expand Up @@ -596,4 +596,4 @@ def get_traefik_configmap():
"""
current_template = k8.read_namespaced_config_map(name='pods-traefik-conf', namespace=NAMESPACE)

return current_template
return current_template

0 comments on commit 5e717fd

Please sign in to comment.