This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-1408 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit fa7e32fc6be486956131a65b998e001623e63a77 Author: orepnikov <[email protected]> AuthorDate: Wed Jun 8 17:07:40 2022 +0300 fix errors --- infrastructure-provisioning/src/general/lib/azure/actions_lib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure-provisioning/src/general/lib/azure/actions_lib.py b/infrastructure-provisioning/src/general/lib/azure/actions_lib.py index 800a57b0d..17e9ff66b 100644 --- a/infrastructure-provisioning/src/general/lib/azure/actions_lib.py +++ b/infrastructure-provisioning/src/general/lib/azure/actions_lib.py @@ -1526,8 +1526,8 @@ def terminate_hdinsight_cluster(resource_group_name, instance_name, cluster_para except Exception as err: logging.info( - "Unable to delete HDInsight Spark cluster: " + str(err) + "\n Traceback: " + traceback.print_exc(file=sys.stdout)) - append_result(str({"error": "Unable to create HDInsight Spark cluster", + "Unable to terminate HDInsight Spark cluster: " + str(err) + "\n Traceback: " + traceback.print_exc(file=sys.stdout)) + append_result(str({"error": "Unable to terminate HDInsight Spark cluster", "error_message": str(err) + "\n Traceback: " + traceback.print_exc( file=sys.stdout)})) traceback.print_exc(file=sys.stdout) \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
