Skip to content
This repository was archived by the owner on Mar 27, 2023. It is now read-only.

Commit bc4190b

Browse files
committed
pinned flower to older version
1 parent 10f4319 commit bc4190b

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

awscdk/awscdk/flower.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,16 @@
1111

1212

1313
class FlowerServiceStack(cloudformation.NestedStack):
14-
def __init__(self, scope: core.Construct, id: str, **kwargs,) -> None:
14+
def __init__(
15+
self,
16+
scope: core.Construct,
17+
id: str,
18+
**kwargs,
19+
) -> None:
1520
super().__init__(
16-
scope, id, **kwargs,
21+
scope,
22+
id,
23+
**kwargs,
1724
)
1825

1926
self.flower_task = ecs.FargateTaskDefinition(self, "FlowerTask")
@@ -26,7 +33,7 @@ def __init__(self, scope: core.Construct, id: str, **kwargs,) -> None:
2633

2734
self.flower_task.add_container(
2835
"FlowerContainer",
29-
image=ecs.ContainerImage.from_registry("mher/flower"),
36+
image=ecs.ContainerImage.from_registry("mher/flower:0.9"),
3037
logging=ecs.LogDrivers.aws_logs(
3138
stream_prefix="FlowerContainer",
3239
log_retention=logs.RetentionDays.ONE_DAY,

0 commit comments

Comments
 (0)