From dca29b0b9a33c69cf0f862a36c3c670bab48f5c9 Mon Sep 17 00:00:00 2001 From: Marius Merschformann Date: Mon, 16 Dec 2024 07:39:46 +0100 Subject: [PATCH] Adding required name parameter --- .nextmv/benchmark.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.nextmv/benchmark.py b/.nextmv/benchmark.py index 6f00b9f..1e41d57 100644 --- a/.nextmv/benchmark.py +++ b/.nextmv/benchmark.py @@ -80,9 +80,11 @@ def push_new_version(app: cloud.Application, tag: str) -> None: name=f"Auto version {tag}", description=f"Automatically generated version {tag}", ) + instance = app.instance("candidate") app.update_instance( id="candidate", version_id=tag, + name=instance.name, # Name is required, but we don't want to change it )