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

Fix DAG import error message - rebased copy for testing #38

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
1 change: 0 additions & 1 deletion lakefs_provider/operators/commit_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ def __init__(self, lakefs_conn_id: str, repo: str, branch: str, msg: str, metada
self.branch = branch
self.msg = msg
self.metadata = metadata
self.task_id = kwargs.get("task_id")

def execute(self, context: Dict[str, Any]) -> Any:
hook = LakeFSHook(lakefs_conn_id=self.lakefs_conn_id)
Expand Down
1 change: 0 additions & 1 deletion lakefs_provider/operators/get_commit_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def __init__(self, lakefs_conn_id: str, repo: str, ref: str, **kwargs: Any) -> N
self.lakefs_conn_id = lakefs_conn_id
self.repo = repo
self.ref = ref
self.task_id = kwargs.get("task_id")

def execute(self, context: Dict[str, Any]) -> Any:
hook = LakeFSHook(lakefs_conn_id=self.lakefs_conn_id)
Expand Down
1 change: 0 additions & 1 deletion lakefs_provider/operators/merge_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ def __init__(self, lakefs_conn_id: str, repo: str, source_ref: str, destination_
self.destination_branch = destination_branch
self.msg = msg
self.metadata = metadata
self.task_id = kwargs.get("task_id")

def execute(self, context: Dict[str, Any]) -> Any:
hook = LakeFSHook(lakefs_conn_id=self.lakefs_conn_id)
Expand Down
1 change: 0 additions & 1 deletion lakefs_provider/operators/upload_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ def __init__(self, lakefs_conn_id: str, repo: str, branch: str, path: str, conte
self.branch = branch
self.path = path
self.content = content
self.task_id = kwargs.get("task_id")

def execute(self, context: Dict[str, Any]) -> Any:
hook = LakeFSHook(lakefs_conn_id=self.lakefs_conn_id)
Expand Down