Skip to content
Snippets Groups Projects
Commit 76525339 authored by Charlotte Hausman's avatar Charlotte Hausman
Browse files

Fixing bug in regex that was preventing condor events from parsing properly

changing default spl to smaller image spl
parent 11a483a5
No related branches found
No related tags found
1 merge request!157Fixing bug in regex that was preventing condor events from parsing properly
Pipeline #1098 passed
......@@ -254,7 +254,7 @@ class WorkflowMonitor:
r"(?P<eventnum>[0-9]{3}) \((?P<jobnum>[0-9]{4})\.[0-9]{3}\.[0-9]{3}\) "
r"(?P<timestamp>[0-9]{2}/[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}) "
r"(?P<desc>[a-zA-Z0-9 ?&:=<>\-._]+)\n"
r"(?P<body>[\t ]+[^\.]*\n)*"
r"(?P<body>[\t ]+[A-z0-9 ?_.(),: - \s]*\n)*"
r"..."
)
match = re.match(r_condor_event, event_str)
......
......@@ -19,7 +19,7 @@ export class WorkspacesComponent implements OnInit {
constructor(private capabilityLauncher: CapabilityLauncherService) {
// this is the famous 394 MB 13B-014 execblock, a useful smallish test
this.productLocator =
"uid://evla/execblock/27561b56-4c6a-4614-bc26-67e436b5e92c";
"uid://evla/image/3d3db489-9331-4e61-aa80-002bc2989b1e";
this.userEmail = null;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment