You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the following lines fails to load include required("env.hocon") with an exception about not being able to find env.hocon.conf or env.hocon.json etc.
Seems like it shouldn't imply an extension if one is provided?
if I change the file name to env.conf then both include required("env") and include required("env.conf") work. So the code is already looking for extensions, and knows not to look for env.conf.conf. Perhaps don't append .conf etc if any extension exists?
The text was updated successfully, but these errors were encountered:
the following lines fails to load
include required("env.hocon")
with an exception about not being able to findenv.hocon.conf
orenv.hocon.json
etc.Seems like it shouldn't imply an extension if one is provided?
if I change the file name to
env.conf
then bothinclude required("env")
andinclude required("env.conf")
work. So the code is already looking for extensions, and knows not to look forenv.conf.conf
. Perhaps don't append.conf
etc if any extension exists?The text was updated successfully, but these errors were encountered: