You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -445,27 +445,36 @@ trait SubmissionMonitor extends FutureSupport with LazyLogging with RawlsInstrum
445
445
logger.debug(s"attaching outputs for ${submissionId.toString}/${workflowRecord.externalId.getOrElse("MISSING_WORKFLOW")}: ${outputs}")
446
446
logger.debug(s"output expressions for ${submissionId.toString}/${workflowRecord.externalId.getOrElse("MISSING_WORKFLOW")}: ${outputExpressionMap}")
447
447
448
-
valparsedExpressions= outputExpressionMap.map { case (outputName, outputExprStr) =>
448
+
valparsedExpressions:Seq[Try[OutputExpression]]= outputExpressionMap.map { case (outputName, outputExprStr) =>
449
449
outputs.get(outputName) match {
450
450
caseNone=>Failure(newRawlsException(s"output named ${outputName} does not exist"))
451
451
caseSome(Right(uot: UnsupportedOutputType)) =>Failure(newRawlsException(s"output named ${outputName} is not a supported type, received json u${uot.json.compactPrint}"))
logger.debug(s"Updating ${update.upserts.size} attributes for entity ${update.entityRef.entityName} of type ${update.entityRef.entityType} in ${submissionId.toString}/${workflowRecord.externalId.getOrElse("MISSING_WORKFLOW")}. First 100: ${update.upserts.take(100)}")
465
+
}
466
+
optWs foreach { workspace: Workspace=>
467
+
logger.debug(s"Updating ${workspace.attributes.size} workspace attributes in ${submissionId.toString}/${workflowRecord.externalId.getOrElse("MISSING_WORKFLOW")}. First 100: ${workspace.attributes.take(100)}")
logger.info(s"Submitting batch of ${workflowIds.size} workflows for submission ${submissionRec.id} in workspace ${workspaceRec.namespace}/${workspaceRec.name} (${workspaceRec.id})")
318
+
315
319
// implicitly passed to WorkflowComponent methods which update status
if (trackDetailedSubmissionMetrics) Option(workflowStatusCounter(workspaceSubmissionMetricBuilder(workspaceRec.toWorkspaceName, submissionRec.id))(status))
0 commit comments