From fa852d7d6780cff963c62b641ec86b90e8daa329 Mon Sep 17 00:00:00 2001 From: Mikael Mengistu Date: Wed, 23 Aug 2017 11:31:36 -0700 Subject: [PATCH] Update hub route in client sample (#756) --- samples/ClientSample/HubSample.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/ClientSample/HubSample.cs b/samples/ClientSample/HubSample.cs index e286fff6a7..d892963c01 100644 --- a/samples/ClientSample/HubSample.cs +++ b/samples/ClientSample/HubSample.cs @@ -28,7 +28,7 @@ namespace ClientSample public static async Task ExecuteAsync(string baseUrl) { - baseUrl = string.IsNullOrEmpty(baseUrl) ? "http://localhost:5000/hubs" : baseUrl; + baseUrl = string.IsNullOrEmpty(baseUrl) ? "http://localhost:5000/default" : baseUrl; var loggerFactory = new LoggerFactory();