Skip to content

Commit a7224f4

Browse files
fix spelling (#76)
1 parent 1e74151 commit a7224f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

rel/source_configs/config.rel

+2-2
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def SimpleSource(s in Source) { not MultiPartSource(s) }
196196
def DatePartitionedSource = relation:identifies[rel_name:identifies[^RelationName[date_partitioned_source_relation]]]
197197
def ChunkPartitionedSource = relation:identifies[rel_name:identifies[^RelationName[chunk_partitioned_source_relation]]]
198198

199-
ic date_part_src_should_declare_date_part_res_reg_exp_missmatch(s in DatePartitionedSource, rel, r, u, reg_exp) {
199+
ic date_part_src_should_declare_date_part_res_reg_exp_mismatch(s in DatePartitionedSource, rel, r, u, reg_exp) {
200200
source:relname(s, rel) and
201201
source:declares(s, r) and
202202
resource:id(r, u) and
@@ -205,7 +205,7 @@ ic date_part_src_should_declare_date_part_res_reg_exp_missmatch(s in DatePartiti
205205
DatePartResource(r)
206206
}
207207

208-
ic chunk_part_src_should_declare_chunk_part_res_reg_exp_missmatch(s in ChunkPartitionedSource, rel, r, u, reg_exp) {
208+
ic chunk_part_src_should_declare_chunk_part_res_reg_exp_mismatch(s in ChunkPartitionedSource, rel, r, u, reg_exp) {
209209
source:relname(s, rel) and
210210
source:declares(s, r) and
211211
resource:id(r, u) and

workflow/snow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def sync_finished(logger: logging.Logger, cursor, source_table: str):
6666
raise Exception(f"Snowflake sync for `{source_table}` has failed. Health status: {health_status}")
6767
if key_value_pairs.get(constants.SNOWFLAKE_SYNC_STATUS) == constants.SNOWFLAKE_FINISHED_SYNC_STATUS:
6868
synced_rows = key_value_pairs.get(constants.SNOWFLAKE_TOTAL_ROWS)
69-
logger.info(f"Snowflake sync finished for `{source_table}` has finished. Synced row: {synced_rows}")
69+
logger.info(f"Snowflake sync finished for `{source_table}` has finished. Synced rows: {synced_rows}")
7070
return True
7171
return False
7272

0 commit comments

Comments
 (0)