-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
jicofo & jvb: Fix OCTO + SCTP behaviour #1791
Conversation
@damencho can you PTAL too? |
I updated the config template according to @saghul's comment and switched this PR from draft to open. Please let me know if there's anything else that needs to be added. :) |
jicofo/rootfs/defaults/jicofo.conf
Outdated
@@ -4,10 +4,10 @@ | |||
{{ $AUTH_TYPE := .Env.AUTH_TYPE | default "internal" -}} | |||
{{ $JICOFO_AUTH_TYPE := .Env.JICOFO_AUTH_TYPE | default $AUTH_TYPE -}} | |||
{{ $JICOFO_AUTH_LIFETIME := .Env.JICOFO_AUTH_LIFETIME | default "24 hours" -}} | |||
{{ $ENABLE_SCTP := .Env.ENABLE_SCTP | default "0" | toBool -}} | |||
{{ $ENABLE_SCTP := .Env.ENABLE_SCTP | default "1" | toBool -}} |
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.
Upon further inspection I think we should keep this defaulting to disabled, for the time being. With the rest of the changes inplace you'll still be able to enable OCTO over SCTP though.
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.
Done in b2ecc27. :)
Yay! ❤️ |
Hello everyone!
As a follow-up to #1787, here's the PR that:
cont-init
check;I'll leave the PR as a draft for now, until @saghul confirms that all that needed to be done is done. :)