Skip to content

Commit 3d61015

Browse files
authored
chore: trigger manual rebuild and deployment of pipeline and extractor images
1 parent dabe194 commit 3d61015

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

data_extract/shared/extract_logic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def get_valid_files(
7777
- Returns an empty list if the folder is empty or contains only reserved files.
7878
"""
7979

80-
# Validate instruction inside the folder
80+
# Validate instruction.txt inside the folder
8181
if not check_handshake(drive_api, folder_id):
8282
print(f"[ERROR]: '{target_folder}' missing instruction.txt or upload not safe.")
8383
return None

data_pipeline/semantic/semantic_executor.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ def orchestrate_module(
9090
module_report = report["modules"]
9191

9292
table_trackers = {
93-
table_name: {"build_stage": False, "validate_stage": False}
93+
table_name: {
94+
"build_stage": False,
95+
"validate_stage": False,
96+
}
9497
for table_name in module_config["tables"]
9598
}
9699
module_report[module_name] = {**table_trackers, "export": False}
@@ -129,6 +132,7 @@ def orchestrate_module(
129132
try:
130133
if table_name not in module_config["tables"]:
131134
report["status"] = "failed"
135+
132136
return False
133137

134138
table_config = module_config["tables"][table_name]

0 commit comments

Comments
 (0)