Exrm migration problem

thanks for the hint. I added it to applications and used your new method ensure_all_deps_started but still no luck.
same error message.
And I added erlang-crypto package to the Container. Still no luck…

any other thoughts?

Same error? Does crypto have a ‘supports’ function?

If this hits trying to start your app, use ‘console’ instead of start, it’ll give you an env similar to your app starting. You have to Application.load(:foo) and then Application.ensure_all_started(:foo) to mimic what normal startup does.

If this hits trying to run command, then use console_clean; you’ll have to call Application.load() yourself, and then try to invoke the function you want to invoke to see it “live”. There you can poke at the runtime environment and see what’s going on.

hth, ~m

1 Like