Skip to content

Commit f1a411e

Browse files
committed
fix types
1 parent 2f2eef3 commit f1a411e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/autoscaling/src/simcore_service_autoscaling/modules/cluster_scaling/_auto_scaling_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1553,12 +1553,12 @@ async def _pre_pull_docker_images_on_idle_hot_buffers(
15531553
)
15541554
)
15551555
ssm_command = await ssm_client.send_command(
1556-
tuple(node.ec2_instance.id),
1556+
(node.ec2_instance.id,),
15571557
command=change_docker_compose_and_pull_command,
15581558
command_name=PREPULL_COMMAND_NAME,
15591559
)
15601560
await ec2_client.set_instances_tags(
1561-
tuple(node.ec2_instance.id),
1561+
(node.ec2_instance,),
15621562
tags={
15631563
MACHINE_PULLING_EC2_TAG_KEY: "true",
15641564
MACHINE_PULLING_COMMAND_ID_EC2_TAG_KEY: ssm_command.command_id,

0 commit comments

Comments
 (0)