From 922b79440d82f2437e03591b1ba3f4abb54bb102 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse Date: Mon, 18 May 2020 14:09:08 +0200 Subject: [PATCH] Revert "DPL: default to transport=shmem on the same host (#3591)" This reverts commit 312a569611fd532110d73f9e15ad7d780dec26b8. --- Framework/Core/src/ChannelSpecHelpers.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/Core/src/ChannelSpecHelpers.cxx b/Framework/Core/src/ChannelSpecHelpers.cxx index 52c20bd81786e..309bf516944c2 100644 --- a/Framework/Core/src/ChannelSpecHelpers.cxx +++ b/Framework/Core/src/ChannelSpecHelpers.cxx @@ -46,7 +46,7 @@ std::string ChannelSpecHelpers::channelUrl(OutputChannelSpec const& channel) { switch (channel.protocol) { case ChannelProtocol::IPC: - return fmt::format("ipc://{}_{},transport=shmem", channel.hostname, channel.port); + return fmt::format("ipc://{}_{}", channel.hostname, channel.port); default: return channel.method == ChannelMethod::Bind ? fmt::format("tcp://*:{}", channel.port) : fmt::format("tcp://{}:{}", channel.hostname, channel.port); @@ -57,7 +57,7 @@ std::string ChannelSpecHelpers::channelUrl(InputChannelSpec const& channel) { switch (channel.protocol) { case ChannelProtocol::IPC: - return fmt::format("ipc://{}_{},transport=shmem", channel.hostname, channel.port); + return fmt::format("ipc://{}_{}", channel.hostname, channel.port); default: return channel.method == ChannelMethod::Bind ? fmt::format("tcp://*:{}", channel.port) : fmt::format("tcp://{}:{}", channel.hostname, channel.port);