Skip to content

Commit

Permalink
fix: Bugfix output incorrect table name in BigQueryExporter log
Browse files Browse the repository at this point in the history
  • Loading branch information
Kesin11 committed Jul 26, 2020
1 parent be16295 commit 14e783e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exporter/bigquery_exporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class BigqueryExporter implements Exporter {
sourceFormat: 'NEWLINE_DELIMITED_JSON',
writeDisposition: 'WRITE_APPEND',
})
console.info(`(BigQuery) Loading ${tmpJsonPath} to ${this.dataset}.${this.table.workflow}. tmp file will be deleted if load complete with no error.`)
console.info(`(BigQuery) Loading ${tmpJsonPath} to ${this.dataset}.${table}. tmp file will be deleted if load complete with no error.`)

const job = results[0]
const errors = job.status?.errors
Expand Down

0 comments on commit 14e783e

Please sign in to comment.