We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 596f0db commit c5544b0Copy full SHA for c5544b0
1 file changed
Framework/Core/src/ChannelSpecHelpers.cxx
@@ -339,6 +339,10 @@ std::string ChannelSpecHelpers::defaultIPCFolder()
339
if (channelPrefix) {
340
return fmt::format("@dpl_{}_", channelPrefix);
341
}
342
+ channelPrefix = getenv("SLURM_JOB_ID");
343
+ if (channelPrefix) {
344
+ return fmt::format("@dpl_{}_", channelPrefix);
345
+ }
346
return "@";
347
#else
348
/// Find out a place where we can write the sockets
0 commit comments