diff --git a/go.sum b/go.sum index 71ceb83b3..3fc7ef0ae 100644 --- a/go.sum +++ b/go.sum @@ -147,6 +147,7 @@ github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGa github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/websocket v1.4.0 h1:WDFjx/TMzVgy9VdMMQi2K2Emtwi2QcUQsztZ/zLaH/Q= github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= github.com/grpc-ecosystem/go-grpc-middleware v1.2.0 h1:0IKlLyQ3Hs9nDaiK5cSHAGmcQEIC8l2Ts1u6x5Dfrqg= github.com/grpc-ecosystem/go-grpc-middleware v1.2.0/go.mod h1:mJzapYve32yjrKlk9GbyCZHuPgZsrbyIbyKhSzOpg6s= diff --git a/server/core/backend/common.go b/server/core/backend/common.go index e508819e1..e624abc79 100644 --- a/server/core/backend/common.go +++ b/server/core/backend/common.go @@ -54,8 +54,7 @@ func registerInnerTypes() { WithInitSize(500).WithParser(proto.ServiceParser))) INSTANCE = Store().MustInstall(NewAddOn("INSTANCE", discovery.Configure().WithPrefix(core.GetInstanceRootKey("")). - WithInitSize(1000).WithParser(proto.InstanceParser). - WithDeferHandler(NewInstanceEventDeferHandler()))) + WithInitSize(1000).WithParser(proto.InstanceParser))) DOMAIN = Store().MustInstall(NewAddOn("DOMAIN", discovery.Configure().WithPrefix(core.GetDomainRootKey()+core.SPLIT). WithInitSize(100).WithParser(proto.StringParser)))