We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 744571e commit eca828aCopy full SHA for eca828a
torchx/runner/config.py
@@ -489,7 +489,7 @@ def find_configs(dirs: Optional[Iterable[str]] = None) -> List[str]:
489
dirs = DEFAULT_CONFIG_DIRS
490
for d in dirs:
491
configfile = Path(d) / CONFIG_FILE
492
- if configfile.exists():
+ if os.access(configfile, os.R_OK):
493
config_files.append(str(configfile))
494
return config_files
495
0 commit comments