-
Notifications
You must be signed in to change notification settings - Fork 3
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
PBX-29: Migrate Kazoo to OTP 25 #21
base: 4.3-vonix
Are you sure you want to change the base?
Conversation
@@ -810,7 +810,8 @@ handle_cast('logout_agent', #state{acct_id=AcctId | |||
lager:debug("published agent logout message"), | |||
{'noreply', State}; | |||
|
|||
handle_cast({'presence_id', _Id}, #state{agent_presence_id=_Id}=State) -> | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor lint issue: clean up this extra whitespace
rel/relx.config
Outdated
{overlay, [{copy, "../core/sup/priv/sup", "{{output_dir}}/bin/"} | ||
,{copy, "nodetool", "{{output_dir}}/bin/"} | ||
,{template, "kazoo", "{{output_dir}}/bin/kazoo"} | ||
{overlay, [{copy, "/core/sup/priv/sup", "{{output_dir}}/bin/"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should not have a leading / on it (should be "core/sup/priv/sup")
relx.config
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This entire file is not needed, the relx.config files are in the rel/ directory.
PBX-29: Migrate Kazoo to OTP 25