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
Whilst reading the code, I noticed a problem with the configuration merging logic.
Consider the case of setting something to a non-default value in the main server configuration and then wanting to override it to the value that happens to be the default for that setting in a .
Since for non-pointer types the current code does not track the difference between "explicitly set to default value" and "not set so using default value", the merging logic cannot take account of this and will incorrectly ignore the inner scope's setting.
The text was updated successfully, but these errors were encountered:
Whilst reading the code, I noticed a problem with the configuration merging logic.
Consider the case of setting something to a non-default value in the main server configuration and then wanting to override it to the value that happens to be the default for that setting in a .
Since for non-pointer types the current code does not track the difference between "explicitly set to default value" and "not set so using default value", the merging logic cannot take account of this and will incorrectly ignore the inner scope's setting.
The text was updated successfully, but these errors were encountered: