You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error is caused by a bug in parseListen() which does not take into account that map are iterated in random order. The parse code which sets a certificate store also sets the protocol to https but that may be overridden by a proto= directive or vice versa depending on the order of the key iteration. I'll push a v1.3.1 soon to fix this.
The text was updated successfully, but these errors were encountered:
The config.parseListen() function does not take into account
that a map is iterated in random order. Configuring the 'cs'
option also sets the protocol to 'https' which may override
the 'proto' option or vice versa. This patch fixes that
behavior.
I've noticed
TestParseListen
is causing some of the Travis CI flickering showing the following error:This error is caused by a bug in
parseListen()
which does not take into account that map are iterated in random order. The parse code which sets a certificate store also sets the protocol tohttps
but that may be overridden by aproto=
directive or vice versa depending on the order of the key iteration. I'll push a v1.3.1 soon to fix this.The text was updated successfully, but these errors were encountered: