Skip to content

Commit 24c9041

Browse files
committed
correct typo
1 parent 2818492 commit 24c9041

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

cosmotech/coal/postgresql/runner.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ def send_runner_metadata_to_postgresql(
7676
DO
7777
UPDATE SET name = EXCLUDED.name, last_run_id = EXCLUDED.last_run_id;
7878
"""
79-
LOGGER.info(T("coal.logs.postgreql.runner.creating_table").format(schema_table=schema_table))
79+
LOGGER.info(T("coal.logs.postgresql.runner.creating_table").format(schema_table=schema_table))
8080
curs.execute(sql_create_table)
8181
conn.commit()
82-
LOGGER.info(T("coal.logs.postgreql.runner.metadata"))
82+
LOGGER.info(T("coal.logs.postgresql.runner.metadata"))
8383
curs.execute(
8484
sql_upsert,
8585
(
@@ -90,4 +90,4 @@ def send_runner_metadata_to_postgresql(
9090
),
9191
)
9292
conn.commit()
93-
LOGGER.info(T("coal.logs.postgreql.runner.metadata_updated"))
93+
LOGGER.info(T("coal.logs.postgresql.runner.metadata_updated"))

cosmotech/translation/coal/en-US/coal/logs/postgreql.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

cosmotech/translation/coal/en-US/coal/logs/postgresql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ connecting: "Connecting to PostgreSQL database"
2323
ingesting_data: "Ingesting data with mode: {mode}"
2424
ingestion_success: "Successfully ingested {rows} rows"
2525
runner:
26-
creating_table: "Creating table {table_name}"
26+
creating_table: "Creating table {schema_table}"
2727
metadata: "Metadata: {metadata}"
2828
metadata_updated: "Metadata updated"

0 commit comments

Comments
 (0)