We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ffa7f0 commit df31ef9Copy full SHA for df31ef9
1 file changed
api/pkg/api/handler/site.go
@@ -458,6 +458,9 @@ func (ush UpdateSiteHandler) Handle(c echo.Context) error {
458
459
// Check if Site capabilities can be modified
460
if apiRequest.Capabilities != nil {
461
+ if es.Config == nil {
462
+ es.Config = &cdbm.SiteConfig{}
463
+ }
464
if apiRequest.Capabilities.NativeNetworking != nil && *apiRequest.Capabilities.NativeNetworking != es.Config.NativeNetworking && !*apiRequest.Capabilities.NativeNetworking {
465
// Native Networking is being disabled
466
// Check if there are VPCs that have virtualization type set to FNN
0 commit comments