File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -278,9 +278,6 @@ class ErrorDict(TypedDict):
278278 type : str
279279
280280
281- has_shown_yaml_error_message = False
282-
283-
284281def _log_yaml_errors (logger , errors : List [ErrorDict ]):
285282 "Format and log a Pydantic-style error dictionary"
286283 global has_shown_yaml_error_message
@@ -289,18 +286,6 @@ def _log_yaml_errors(logger, errors: List[ErrorDict]):
289286 for error in errors :
290287 loc = " -> " .join (repr (x ) for x in error ["loc" ] if x != "__root__" )
291288 logger .warning (" %s\n %s" , loc , error ["msg" ])
292- if not has_shown_yaml_error_message :
293- logger .error (
294- "NOTE: These warnings will become errors on Sept 30, 2022.\n \n "
295- "If you need to put non-standard data in your CumulusCI file "
296- "(for some form of project-specific setting), put it in "
297- "the `project: custom:` section of `cumulusci.yml` ."
298- )
299- logger .error (
300- "If you think your YAML has no error, please report the bug to the CumulusCI team."
301- )
302- logger .error ("https://github.com/SFDO-Tooling/CumulusCI/issues/\n " )
303- has_shown_yaml_error_message = True
304289
305290
306291def cci_safe_load (
You can’t perform that action at this time.
0 commit comments