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 bb82100 commit af4045bCopy full SHA for af4045b
src/stub_launcher.cc
@@ -240,10 +240,10 @@ StubLauncher::Launch()
240
std::string launch_command;
241
242
std::stringstream ss;
243
- ss << python_backend_stub << " " << model_path_ << " " << shm_region_name_
+ ss << "\"" << python_backend_stub << "\" \"" << model_path_ << "\" " << shm_region_name_
244
<< " " << shm_default_byte_size_ << " " << shm_growth_byte_size_ << " "
245
- << parent_pid_ << " " << python_lib_ << " " << ipc_control_handle_ << " "
246
- << stub_name << " " << runtime_modeldir_;
+ << parent_pid_ << " \"" << python_lib_ << "\" " << ipc_control_handle_ << " \""
+ << stub_name << "\" \"" << runtime_modeldir_ << "\"";
247
launch_command = ss.str();
248
249
LOG_MESSAGE(
0 commit comments