Commit 1be7a80c authored by Daniel Verkamp's avatar Daniel Verkamp
Browse files

jsonrpc: remove pointless 'continue' statement



This was left behind in commit 122e2846 ("jsonrpc: move closed conn
handling before poll()").  It is not needed now that the closed
connection handling is in a loop by itself.

Change-Id: I09959003bc6a370f1621815aebdd428be3304e5e
Signed-off-by: default avatarDaniel Verkamp <daniel.verkamp@intel.com>
Reviewed-on: https://review.gerrithub.io/369906


Tested-by: default avatarSPDK Automated Test System <sys_sgsw@intel.com>
Reviewed-by: default avatarBen Walker <benjamin.walker@intel.com>
parent 5b53b568
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -362,8 +362,6 @@ spdk_jsonrpc_server_poll(struct spdk_jsonrpc_server *server)
				SPDK_TRACELOG(SPDK_TRACE_RPC, "all outstanding requests completed\n");
				spdk_jsonrpc_server_conn_remove(conn);
			}

			continue;
		}
	}