Skip to content

Commit

Permalink
fix: bug and increase version (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
dianadevargas authored Dec 27, 2018
1 parent d0835c7 commit c3e5c74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inceptum-etl",
"version": "0.11.2",
"version": "0.11.3",
"description": "A framework for ETL processes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/EtlDestination.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export abstract class EtlDestination {
* Overwrite this method with if you need to do anything on an empty batch
*/
public async touch(batch: EtlBatch): Promise<void> {
log.error(`Process empty batch ${batch.getBatchIdentifier}`);
log.error(`Process empty batch ${batch.getBatchIdentifier()}`);
return;
}
}

0 comments on commit c3e5c74

Please sign in to comment.