-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Kill off deprecated "config-on-the-fly" docker mode #6918
Conversation
Lots of people seem to get confused by this mode, and it's been deprecated since Synapse 1.1.0. It's time for it to go.
@@ -188,11 +188,6 @@ def main(args, environ): | |||
else: | |||
ownership = "{}:{}".format(desired_uid, desired_gid) | |||
|
|||
log( |
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.
I've removed this while I was here because it looked misleadingly like an error message, and I'm not sure what it was for (possibly debug?)
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.
I remember there being a problem with uid's in docker that a fix came in for. This was possibly debugging for it. Considering I haven't heard anyone speak of this problem for a while, it's probably unnecessary logging at this point.
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.
lgtm other than the nit below
@@ -188,11 +188,6 @@ def main(args, environ): | |||
else: | |||
ownership = "{}:{}".format(desired_uid, desired_gid) | |||
|
|||
log( |
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.
I remember there being a problem with uid's in docker that a fix came in for. This was possibly debugging for it. Considering I haven't heard anyone speak of this problem for a while, it's probably unnecessary logging at this point.
Co-Authored-By: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
sytest is now failing due to unrelated changes on develop. merging anyway. |
Lots of people seem to get confused by this mode, and it's been deprecated
since Synapse 1.1.0. It's time for it to go.
Fixes #6912