We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e87844d commit 000be91Copy full SHA for 000be91
src/DIRAC/WorkloadManagementSystem/Client/PilotLoggingPlugins/FileCacheLoggingPlugin.py
@@ -24,8 +24,8 @@ def __init__(self):
24
"""
25
# UUID pattern
26
self.pattern = re.compile(r"^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$")
27
- # pilot stamp pattern
28
- self.stamppattern = re.compile(r"^[0-9a-f]{32}$")
+ # pilot stamp pattern (relax to a-z to allow test specific names)
+ self.stamppattern = re.compile(r"^[0-9a-z]{32}$")
29
self.meta = {}
30
logPath = os.path.join(os.getcwd(), "pilotlogs")
31
self.meta["LogPath"] = logPath
0 commit comments