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
In one of my libraries, I have a resources dir that has some subdirs that are relative symlinked directories to another library's resources subdirs, on the same filesystem, e.g. lib-A/resources/public/something symlinks to the folder ../../../../lib-B/resources/public/something
When running tests that need files in the resources directory, everything works fine with Boot 2.5.5. But making just one change, to use Boot 2.6.0, and then the tests fail.
By starting up a REPL in the library directory using Boot 2.6.0, it looks like the process has no visibility to the symlinked dir, e.g.
(->>"public/something"
io/resource)
...returns nil when something is a symlink as described above. Switch to Boot 2.5.5, and everything works again.
The text was updated successfully, but these errors were encountered:
martinklepsch
changed the title
Boot 2.6.0 has problems with (:resource-paths) symlinks, that Boot 2.5.5 works fine with
2.6.0 problems with symlinks in :resource-paths; 2.5.5 works fine
Oct 11, 2016
You do not need to update the binary, just update BOOT_VERSION in your boot.properties file and it will load the version you built from your local Maven repo.
In one of my libraries, I have a
resources
dir that has some subdirs that are relative symlinked directories to another library'sresources
subdirs, on the same filesystem, e.g.lib-A/resources/public/something
symlinks to the folder../../../../lib-B/resources/public/something
When running tests that need files in the
resources
directory, everything works fine with Boot 2.5.5. But making just one change, to use Boot 2.6.0, and then the tests fail.By starting up a REPL in the library directory using Boot 2.6.0, it looks like the process has no visibility to the symlinked dir, e.g.
...returns
nil
whensomething
is a symlink as described above. Switch to Boot 2.5.5, and everything works again.The text was updated successfully, but these errors were encountered: