Bump to RC7, remove conditional panic

Signed-off-by: Derek Collison <derek@nats.io>
This commit is contained in:
Derek Collison
2019-04-25 17:09:53 -07:00
parent e4a006dbfc
commit 2d0abd66af
2 changed files with 2 additions and 7 deletions

View File

@@ -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

View File

@@ -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.