Ver Fonte

check nil settings

Darien Raymond há 9 anos atrás
pai
commit
f87d7f36f5
1 ficheiros alterados com 6 adições e 0 exclusões
  1. 6 0
      proxy/registry/config_cache.go

+ 6 - 0
proxy/registry/config_cache.go

@@ -26,6 +26,9 @@ func MarshalInboundConfig(protocol string, settings *any.Any) (interface{}, erro
 	if err != nil {
 		return nil, err
 	}
+	if settings == nil {
+		return config, nil
+	}
 	if err := ptypes.UnmarshalAny(settings, config.(proto.Message)); err != nil {
 		return nil, err
 	}
@@ -37,6 +40,9 @@ func MarshalOutboundConfig(protocol string, settings *any.Any) (interface{}, err
 	if err != nil {
 		return nil, err
 	}
+	if settings == nil {
+		return config, nil
+	}
 	if err := ptypes.UnmarshalAny(settings, config.(proto.Message)); err != nil {
 		return nil, err
 	}