File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -545,7 +545,7 @@ def check_required(
545545 if fields_describe [field ]["createable" ] and not defaulted :
546546 required_fields .add (field )
547547 missing_fields = required_fields .difference (
548- set (self .fields .keys ()) | set (self .lookups )
548+ set (self .fields .keys ()) | set (self .lookups ) | set ( self . static . keys ())
549549 )
550550 if len (missing_fields ) > 0 :
551551 message = f"One or more required fields are missing for loading on { self .sf_object } :{ missing_fields } "
Original file line number Diff line number Diff line change @@ -3066,6 +3066,7 @@ def test_error_result_counting__multi_batches(
30663066 {
30673067 "sql_path" : cumulusci_test_repo_root / "datasets/bad_sample.sql" ,
30683068 "mapping" : cumulusci_test_repo_root / "datasets/mapping.yml" ,
3069+ "ignore_row_errors" : True ,
30693070 },
30703071 )
30713072 with mock .patch ("cumulusci.tasks.bulkdata.step.DEFAULT_BULK_BATCH_SIZE" , 3 ):
You can’t perform that action at this time.
0 commit comments