From f7caaa8b2973db19ae711cd4f7eff1a061c07bb1 Mon Sep 17 00:00:00 2001 From: Chris Llanwarne Date: Fri, 5 Jan 2024 15:53:11 -0500 Subject: [PATCH] Include full error context when failing to abort TES jobs --- .../backend/impl/tes/TesAsyncBackendJobExecutionActor.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala b/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala index 335ee40b466..255f9c811dc 100644 --- a/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala +++ b/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala @@ -380,7 +380,7 @@ class TesAsyncBackendJobExecutionActor(override val standardParams: StandardAsyn HttpRequest(method = HttpMethods.POST, uri = s"$tesEndpoint/${job.jobId}:cancel") ) onComplete { case Success(_) => jobLogger.info("{} Aborted {}", tag: Any, job.jobId) - case Failure(ex) => jobLogger.warn("{} Failed to abort {}: {}", tag, job.jobId, ex.getMessage) + case Failure(ex) => jobLogger.warn("{} Failed to abort {}", tag, job.jobId, ex) } ()