nizhikov commented on a change in pull request #9065:
URL: https://github.com/apache/ignite/pull/9065#discussion_r623139286
##########
File path: modules/ducktests/tests/ignitetest/services/utils/ignite_spec.py
##########
@@ -179,14 +180,19 @@ def init_local_shared(self):
if os.path.isdir(local_dir):
self.service.logger.debug("Local shared dir already exists.
Exiting. " + local_dir)
+ while os.path.exists(os.path.join(local_dir, "duck.lock")):
+ time.sleep(1)
return local_dir
self.service.logger.debug("Local shared dir not exists. Creating. " +
local_dir)
os.mkdir(local_dir)
+ self.__runcmd(f"touch {local_dir}/duck.lock")
Review comment:
`__runcmd` method doesn't exists.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]