Summary
The issue is caused by line 121 in DockerProcessFactory.java file where Files.createDirectory() method is used to create a multilevel directory, which is incorrect. The correct method to use is Files.createDirectories().
Question
This issue is happening because of line 121 in DockerProcessFactory.java file which is trying to create a multilevel directory “/tmp/workspace/f54cc18e-ce16-406d-9c5b-b1fe2493cf73/0” using Files.createDirectory() method. This method is only used to create a subdirectory inside an existing directory not a chain.
Can you please change the code to use Files.createDirectories() method, this will solve the issue. Will be grateful if it get addressed little early, we are blocked.
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want
to access the original thread.