File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 18
18
#include " absl/algorithm/container.h"
19
19
#include " absl/container/flat_hash_map.h"
20
20
#include " absl/container/flat_hash_set.h"
21
- #include " absl/strings/str_join.h"
22
21
#include " boost/interprocess/ipc/message_queue.hpp"
23
22
#include " boost/process/child.hpp"
24
23
#include " boost/process/io.hpp"
@@ -831,8 +830,7 @@ class Driver {
831
830
args.push_back (fmt::format (" --worker-id={}" , workerId));
832
831
this ->options .addWorkerOptions (args, workerId);
833
832
834
- spdlog::debug (" spawning worker with arguments: '{}'" ,
835
- absl::StrJoin (args, " " ));
833
+ spdlog::debug (" spawning worker with arguments: '{}'" , fmt::join (args, " " ));
836
834
837
835
boost::process::child worker (args, boost::process::std_out > stdout);
838
836
spdlog::debug (" worker info running {}, pid = {}" , worker.running (),
You can’t perform that action at this time.
0 commit comments