Skip to content

Commit a2dfdc3

Browse files
authored
Merge pull request #6 from ksmin23/features/langfuse-v3
refactor codes
2 parents c6539cc + 3ff0db3 commit a2dfdc3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

langfuse-v3/app.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@
7070

7171
ecs_cluster_stack = ECSClusterStack(app, "LangfuseECSClusterStack",
7272
vpc_stack.vpc,
73-
service_discovery_stack.namespace,
7473
env=AWS_ENV
7574
)
7675
ecs_cluster_stack.add_dependency(service_discovery_stack)

langfuse-v3/cdk_stacks/ecs_cluster.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
class ECSClusterStack(Stack):
1616

17-
def __init__(self, scope: Construct, construct_id: str, vpc, service_discovery_namespace, **kwargs) -> None:
17+
def __init__(self, scope: Construct, construct_id: str, vpc, **kwargs) -> None:
1818

1919
super().__init__(scope, construct_id, **kwargs)
2020

0 commit comments

Comments
 (0)