Skip to content

Commit a7c57d4

Browse files
committed
java.io.tmpdir instead of /tmp as default
1 parent d52d6d1 commit a7c57d4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/main/resources/application.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
applicationName = Common Workflow Language Viewer
77
applicationURL = https://view.commonwl.org
88

9-
# Path to a directory in which the RO Bundles will be stored
10-
bundleStorage = /tmp
9+
# Path to a directory in which the RO Bundles will be stored, e.g. /tmp
10+
bundleStorage = ${java.io.tmpdir}
1111

12-
# Path to a directory in which graphviz images will be stored
13-
graphvizStorage = /tmp
12+
# Path to a directory in which graphviz images will be stored, e.g. /tmp
13+
graphvizStorage = ${java.io.tmpdir}
1414

15-
# Path to a directory in which git repositories will be checked out into
16-
gitStorage = /tmp
15+
# Path to a directory in which git repositories will be checked out into, e.g. /tmp
16+
gitStorage = ${java.io.tmpdir}
1717

1818
# How long to cache workflows in days before checking for changes via Github
1919
cacheDays = 1

0 commit comments

Comments
 (0)