File tree Expand file tree Collapse file tree 3 files changed +6
-132
lines changed
Expand file tree Collapse file tree 3 files changed +6
-132
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -299,6 +299,11 @@ def _build_config_from_args(kwargs) -> RunnerConfig:
299299 workload = workload_config
300300 )
301301
302+ # Build concatenated app name with workload profile
303+ base_app_name = kwargs ['app_name' ]
304+ workload_profile_name = kwargs .get ('workload_profile' , 'custom' )
305+ concatenated_app_name = f"{ base_app_name } -{ workload_profile_name } "
306+
302307 # Build main runner config
303308 config = RunnerConfig (
304309 redis = redis_config ,
@@ -314,7 +319,7 @@ def _build_config_from_args(kwargs) -> RunnerConfig:
314319 otel_endpoint = kwargs ['otel_endpoint' ],
315320 otel_service_name = kwargs ['otel_service_name' ],
316321 otel_export_interval_ms = kwargs ['otel_export_interval' ],
317- app_name = kwargs [ 'app_name' ] ,
322+ app_name = concatenated_app_name ,
318323 instance_id = kwargs ['instance_id' ],
319324 version = kwargs ['version' ] or get_redis_version ()
320325 )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments