hammerface opened a new issue, #193: URL: https://github.com/apache/incubator-resilientdb/issues/193
In `incubator-resilientdb/scripts/deploy/script/deploy_local.sh` https://github.com/apache/incubator-resilientdb/blob/e18d57620ccc167559b25c4c8e3dd20ce25abeb0/scripts/deploy/script/deploy_local.sh#L115 The trailing `&` means the function call will run as a background process without blocking the script from continuing. It's possible for these mkdir calls to still be in progress when the script later tries to copy files into those created folders. I encountered this issue myself while trying to run performance benchmarks. The most straightforward fix is the remove the `&`: `run_one_cmd "mkdir -p ${home_path}/${main_folder}/$idx"` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
