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
BUG/MINOR: Don't initialize Backend.DefaultServer when not used
We used to always initialize the DefaultServer struct of Backend model
before any processing. Which makes the deep.Equal(newBackend, backend)
test always return true eventhough default-server is not used because
newBackend.DefaultServer is an empty struct and backend.DefaultServer is
nil. This has been fixed by initializing Backend.DefaultServer only when
it is going to be used.
0 commit comments