Skip to content

Commit

Permalink
Set option default to False
Browse files Browse the repository at this point in the history
  • Loading branch information
aditya-balachander committed Dec 28, 2023
1 parent 16ae767 commit 74f632d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cumulusci/tasks/bulkdata/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class LoadData(SqlAlchemyMixin, BaseSalesforceApiTask):
"description": "When True, all path options are ignored and only a dataset matching the org shape name will be loaded. Defaults to False."
},
"enable_rollback": {
"description": "When True, performs rollback operation incase of error. Defaults to True"
"description": "When True, performs rollback operation incase of error. Defaults to False"
},
}
row_warning_limit = 10
Expand Down Expand Up @@ -122,7 +122,7 @@ def _init_options(self, kwargs):
self.options.get("set_recently_viewed", True)
)
self.options["enable_rollback"] = process_bool_arg(
self.options.get("enable_rollback", True)
self.options.get("enable_rollback", False)
)

def _init_dataset(self):
Expand Down

0 comments on commit 74f632d

Please sign in to comment.