From b12ea3b3972deaf9f128082e510373620623a9d3 Mon Sep 17 00:00:00 2001 From: Marius Merschformann Date: Fri, 27 Sep 2024 00:52:20 +0200 Subject: [PATCH] Fix instance default --- nextpipe/decorators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nextpipe/decorators.py b/nextpipe/decorators.py index aedb998..a443d3b 100644 --- a/nextpipe/decorators.py +++ b/nextpipe/decorators.py @@ -126,7 +126,7 @@ def wrapper(*args, **kwargs): def app( app_id: str, - instance_id: str = "default", + instance_id: str = "devint", parameters: Dict[str, any] = None, input_type: InputType = InputType.JSON, ):