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

Commit 64f07c5

Browse files
committed
changed path of flower url prefixc
1 parent 7dd907b commit 64f07c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

awscdk/awscdk/flower.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(self, scope: core.Construct, id: str, **kwargs,) -> None:
3232
),
3333
command=[
3434
"flower",
35-
"--url_prefix=flower",
35+
"--url_prefix=flower/",
3636
f"--broker={CELERY_BROKER_URL}",
3737
f"--basic_auth=flower:{FLOWER_PASSWORD}",
3838
],
@@ -63,6 +63,6 @@ def __init__(self, scope: core.Construct, id: str, **kwargs,) -> None:
6363
priority=1,
6464
path_patterns=["/flower/*", "flower/*"],
6565
health_check=elbv2.HealthCheck(
66-
healthy_http_codes="200-299", path="/api/health-check/"
66+
healthy_http_codes="200-299", path="/flower/"
6767
),
6868
)

0 commit comments

Comments
 (0)