root validator on FS config does not work properly
when spinning off any north tools locally, if any uploads
is present under .volumes/staging
, the hub
process fails to create a container for that tool (e.g. jupyter) complaining about the path
not being absolute.
the get_external_path
in config.py is supposed to return absolute path I guess. I changed return path
on line 381 of nomad.config.models.config.py to
return os.path.join(values.get('working_directory'), path)
and it is working fine now.