File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
yarn/common/src/main/scala/org/apache/spark/deploy/yarn Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,9 +59,9 @@ trait ClientBase extends Logging {
59
59
private val distCacheMgr = new ClientDistributedCacheManager ()
60
60
61
61
// Staging directory is private! -> rwx--------
62
- val STAGING_DIR_PERMISSION : FsPermission = FsPermission .createImmutable(0700 : Short )
62
+ val STAGING_DIR_PERMISSION : FsPermission = FsPermission .createImmutable(0x1C0 : Short ) // 0700
63
63
// App files are world-wide readable and owner writable -> rw-r--r--
64
- val APP_FILE_PERMISSION : FsPermission = FsPermission .createImmutable(0644 : Short )
64
+ val APP_FILE_PERMISSION : FsPermission = FsPermission .createImmutable(0x1A4 : Short ) // 0644
65
65
66
66
// TODO(harvey): This could just go in ClientArguments.
67
67
def validateArgs () = {
You can’t perform that action at this time.
0 commit comments