We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d89dab commit e3f01f3Copy full SHA for e3f01f3
chainlink/__init__.py
@@ -2,6 +2,7 @@
2
import concurrent
3
import concurrent.futures
4
import logging
5
+import os
6
import tempfile
7
8
import docker
@@ -35,6 +36,7 @@ async def run_async(self, environ={}):
35
36
37
with tempfile.TemporaryDirectory(dir=self.workdir) as mount:
38
logger.info("using {} for temporary job directory".format(mount))
39
+ os.chmod(mount, 0o777)
40
41
for (idx, stage) in enumerate(self.stages):
42
logger.info("running stage {}".format(idx + 1))
0 commit comments