-
Notifications
You must be signed in to change notification settings - Fork 520
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
require syntax causes wrap-reload not to reload some namespaces #240
Comments
What happens if you use vectors instead of lists? e.g. |
Nope, that doesn't seem to fix the problem. |
Does adding the |
I guess I should also add that I'm using ring-core version 1.3.2 which is using 0.2.2 of ns-tracker. Working on testing your suggestion. |
Adding |
This issue might require some code changes to ns-tracker. Sounds like it's not accounting for something. |
I have a project where
core.clj
requiring looks something like this:This
[namespace (subnamespace1 :as x) (subnamespace2 :as y) ...]
syntax seems to cause certain namespaces not to reload. For instance,core.clj
reloads fine. However, a change toraflapi.clj
is not reloaded. If, after changingraflapi.clj
, I changecore.clj
, the change inraflapi.clj
gets reloaded. I couldn't figure out a pattern that governed which namespaces would be reloaded properly.[Fix] Flattening the require syntax causes all namespaces to be reloaded properly.
The text was updated successfully, but these errors were encountered: