From 2d0abd66af44323a765157840a360a82a10464fe Mon Sep 17 00:00:00 2001 From: Derek Collison Date: Thu, 25 Apr 2019 17:09:53 -0700 Subject: [PATCH] Bump to RC7, remove conditional panic Signed-off-by: Derek Collison --- server/const.go | 2 +- server/leafnode.go | 7 +------ 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/server/const.go b/server/const.go index 1168e99d..35a9cd66 100644 --- a/server/const.go +++ b/server/const.go @@ -40,7 +40,7 @@ var ( const ( // VERSION is the current version for the server. - VERSION = "2.0.0-RC6" + VERSION = "2.0.0-RC7" // PROTO is the currently supported protocol. // 0 was the original diff --git a/server/leafnode.go b/server/leafnode.go index 0fe68d6c..89ee5cc8 100644 --- a/server/leafnode.go +++ b/server/leafnode.go @@ -1220,12 +1220,7 @@ func (c *client) processInboundLeafMsg(msg []byte) { c.checkForImportServices(acc, msg) } - // Check to see if we have a routed message with a service reply. - if isServiceReply(c.pa.reply) && acc != nil { - // TODO(dlc) - Figure out what this means. - panic("Not Implemented") - } - + // Collect queue names if needed. var qnames [][]byte // Check for no interest, short circuit if so.