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 58b43fe commit 3330a1aCopy full SHA for 3330a1a
catalyst_sdwan_lab/tasks/utils.py
@@ -224,7 +224,8 @@ def get_cml_sdwan_image_definition(
224
return new_requested_image_definition
225
else:
226
available_software_versions = [
227
- image_id.split("-")[3] for image_id in existing_image_definitions
+ image_id.split("-")[3]
228
+ for image_id in existing_image_definitions
229
if len(image_id.split("-")) > 3
230
]
231
sys.exit(
@@ -235,7 +236,8 @@ def get_cml_sdwan_image_definition(
235
236
)
237
238
239
240
241
242
243
0 commit comments