Skip to content

Commit

Permalink
Update config.py (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-pie authored Mar 2, 2020
1 parent 1251cd2 commit 91d10f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipelinewise/cli/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,9 @@ def save_tap_jsons(self, target, tap, extra_config_keys=None):
# Generate tap inheritable_config dict
tap_inheritable_config = utils.delete_empty_keys({
'temp_dir': self.get_temp_dir(),
'batch_size_rows': tap.get('batch_size_rows'),
'batch_size_rows': tap.get('batch_size_rows', 20000),
'parallelism': tap.get('parallelism', 0),
'parallelism_max': tap.get('parallelism_max', 16),
'parallelism_max': tap.get('parallelism_max', 4),
'hard_delete': tap.get('hard_delete', True),
'flush_all_streams': tap.get('flush_all_streams', False),
'primary_key_required': tap.get('primary_key_required', True),
Expand Down

0 comments on commit 91d10f6

Please sign in to comment.