We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d56b3e9 commit 0348c26Copy full SHA for 0348c26
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