I have my client code as below. I have a signalr route and hub connection name. I am able to connect to the hub and get events. Now I need to connect to one more hub for the same route to get more events.
this.hubConnection = this.window.$.hubConnection();
this.hubConnection.url = this.apiUrl + "api/signalr";
this.hubProxy = this.hubConnection.createHubProxy("Event1Hub");
this.hubProxy = this.hubConnection.createHubProxy("Event2Hub"); // When I add this line it is overriding first hub and only connecting to Event2Hub.
I am using "signalr": "2.3.0",