-
Notifications
You must be signed in to change notification settings - Fork 30
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
jchash.start undefined function #13
Comments
@jnatherley I'm glad to hear that, thanks a lot :) ... on the other hand, let me check and get back to you ASAP |
Hey @cabol Just did some more digging now, it looks like it's not being compiled:
Thanks again :) |
I transitioned this app from being a standalone phoenix app and now as part of an umbrella, in the standalone phoenix app when doing the mix release it looks like this dependency was never fetched, but as apart of the umbrella it is fetched and compiled. EDIT: Seems like downgrading to |
You meant |
I think what is the issue, while I push the fix on the master branch, you can do this workaround: Within the release :your_app do
set version: current_version(:your_app)
set applications: [
:runtime_tools,
:jchash
]
end Or you can also add def application do
[
extra_applications: [:logger],
included_applications: [:jchash],
mod: {YourApp.Application, []}
]
end I will try to push the fix ASAP, but in the meantime let me know if the workaround works. |
@jnatherley I've pushed the fix to master, try it out and please let me know if it works. Stay tuned! |
thanks @cabol I'll give this fix a whirl! |
Hey Cabol,
First of all fantastic library, it's super easy to use and works extremely nicely. We've had a small issue building a repeatable docker image for our elixir umbrella app. This is the error that is thrown when including the nebulex_redis_adapter
Tested with:
nebulex_redis_adapter ~> "1.0.0"
&nebulex_redis_adapter ~> "1.1.0"
The text was updated successfully, but these errors were encountered: