source2sea
Contributor

my workaround now is to make the code like below, so the databricks jobs becomes failure.

        case Left(ex) => {
          IO(logger.error("Glue failure", ex)).map(_ => ExitCode.Error)
          IO.raiseError(ex)
        }

View solution in original post