Skip to content

Commit c4c36bf

Browse files
committed
fix validation
1 parent 56a54fa commit c4c36bf

File tree

1 file changed

+2
-1
lines changed
  • services/clusters-keeper/src/simcore_service_clusters_keeper/modules

1 file changed

+2
-1
lines changed

services/clusters-keeper/src/simcore_service_clusters_keeper/modules/clusters.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,9 @@ async def get_cluster_workers(
134134
],
135135
tags={
136136
EC2_NAME_TAG_KEY: TypeAdapter(AWSTagValue).validate_python(
137-
f"{get_cluster_name(app_settings, user_id=user_id, wallet_id=wallet_id, is_manager=False)}*"
137+
f"{get_cluster_name(app_settings, user_id=user_id, wallet_id=wallet_id, is_manager=False)}"
138138
)
139+
+ "*" # NOTE: this is done this way as * is a special char in AWS tag filtering
139140
},
140141
)
141142
return ec2_instance_data

0 commit comments

Comments
 (0)