Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
NotChristianGarcia committed Nov 22, 2024
1 parent 553b62c commit 0b06fe5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion service/models_templates_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,14 @@ def combine_pod_and_template_recursively(input_obj, template_name, seen_template
if input_obj.resources:
input_obj.resources = input_obj.resources.dict()
except Exception as e:
logger.debug(f'this part: Got exception when attempting to combine pod and templates: {e}')
logger.debug(f'this resources part: Got exception when attempting to combine pod and templates: {e}')
pass

try:
if input_obj.networking:
input_obj.networking = input_obj.networking.dict()
except Exception as e:
logger.debug(f'this networking part: Got exception when attempting to combine pod and templates: {e}')
pass

except Exception as e:
Expand Down

0 comments on commit 0b06fe5

Please sign in to comment.