Fix infinite loop in sample (#1324)

This commit is contained in:
BrennanConroy 2018-01-19 13:02:47 -08:00 committed by GitHub
parent d38764a8f0
commit 87288822a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -92,10 +92,10 @@ namespace ClientSample
// Keep trying to until we can start
while (true)
{
try
{
await connection.StartAsync();
return;
}
catch (Exception)
{