From 802f29df478d510b1548c4c361bfd18190de046e Mon Sep 17 00:00:00 2001 From: Michael Davidsaver Date: Sat, 30 Jul 2016 10:46:21 -0400 Subject: [PATCH] rsrv: UDP search ignore DOREPLY Don't send notice of failure for lookup via. UDP. --- src/ioc/rsrv/camessage.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ioc/rsrv/camessage.c b/src/ioc/rsrv/camessage.c index 98331abba..1b00aaace 100644 --- a/src/ioc/rsrv/camessage.c +++ b/src/ioc/rsrv/camessage.c @@ -2255,8 +2255,6 @@ static int search_reply_udp ( caHdrLargeArray *mp, void *pPayload, struct client /* Exit quickly if channel not on this node */ if (dbChannelTest(pName)) { DLOG ( 2, ( "CAS: Lookup for channel \"%s\" failed\n", pPayLoad ) ); - if (mp->m_dataType == DOREPLY) - search_fail_reply ( mp, pPayload, client ); return RSRV_OK; } @@ -2296,8 +2294,6 @@ static int search_reply_udp ( caHdrLargeArray *mp, void *pPayload, struct client dbch = dbChannel_create(pName); if (!dbch) { DLOG ( 2, ( "CAS: dbChannel Test of \"%s\" OK but Create failed\n", pName ) ); - if (mp->m_dataType == DOREPLY) - search_fail_reply ( mp, pPayload, client ); return RSRV_OK; } pchannel = casCreateChannel ( client, dbch, mp->m_cid );