You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geode.apache.org by Kirk Lund <kl...@apache.org> on 2018/08/23 21:12:23 UTC

CacheServer.setNotifyBySubscription(true); not needed

I'm seeing this in quite a few newer tests:

1:    CacheServer server = cacheRule.getCache().addCacheServer();
2:    server.setPort(0);
3:    *server.setNotifyBySubscription(true);*
4:    server.start();

Just want to point out that line 3 gets flagged as deprecated and is no
longer needed. NotifyBySubscription is now TRUE by default.