-
Notifications
You must be signed in to change notification settings - Fork 187
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
distillery support broke with changed output_dir in distillery 1.0.0 #182
Comments
For anyone else reading this issue, the temporary fix is to go into # Other environments
environment :prod do
# Other settings
set output_dir: "rel/<your_app_name>"
end |
@green-arrow's workaround works, I finally got edeliver to do hot code upgrades. Found too many gotchas in the whole process besides this one. For example:
|
I had an umbrella app that needed |
@green-arrow @rmarscher thanks for the input guys! The error is happening |
Sorry people, I misread it. Patch is ready and tested #256 Here is the
|
Since distillery 1.0.0, its
output_dir
is configurable, and the default has changed, causing edeliver 1.4.0 to not work anymore out of the box.I've fixed it by configuring distillery to use the old
output_dir
like so:I've spent several hours trying to understand is executed where (edeliver vs. distillery, local vs. build server vs. deploy server) and what paths are used, before I gave up and changed the output_dir in distillery.
Would it be possible to accomodate the changed distillery default in the next version of edeliver?
Environment
mix edeliver --version
): 1.4.0elixir -v
): 1.3.4Verbose output
Current behavior
edeliver cannot find distillery release, because distillery
output_dir
default has changed with distillery 1.0.0Expected behavior
edeliver should find distillery release without further configuration when using distillery 1.0.0.
The text was updated successfully, but these errors were encountered: