We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 055e332 commit 78ffdf3Copy full SHA for 78ffdf3
apps/expert/lib/expert/engine_node.ex
@@ -69,6 +69,7 @@ defmodule Expert.EngineNode do
69
# as positional argument. Then, we use a simple --eval that decodes
70
# and evaluates the string.
71
project_node = Project.node_name(project)
72
+ port_mapper = Forge.NodePortMapper
73
74
code =
75
quote do
@@ -77,7 +78,7 @@ defmodule Expert.EngineNode do
77
78
# We start distribution here, rather than on node boot, so that
79
# -pa takes effect and Forge.EPMD is available
80
{:ok, _} = Node.start(node, :longnames)
- Forge.NodePortMapper.register()
81
+ unquote(port_mapper).register()
82
end
83
84
code
0 commit comments