Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Connection override fix #2746

Merged
merged 4 commits into from
Apr 11, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# ---------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# ---------------------------------------------------------
import copy
import tempfile
from functools import lru_cache
from os import PathLike
Expand Down Expand Up @@ -82,7 +83,7 @@ def _resolve_connections(self, flow_context: FlowContext) -> "FlowContextResolve

overwrite_connections(
flow_dag=self.flow_dag,
connections=flow_context.connections,
singankit marked this conversation as resolved.
Show resolved Hide resolved
connections=copy.deepcopy(flow_context.connections),
working_dir=self.working_dir,
)
return self
singankit marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Loading