Skip to content
This repository has been archived by the owner on Mar 16, 2021. It is now read-only.

Commit

Permalink
Update src/Ng/Jobs/LightningJob.cs
Browse files Browse the repository at this point in the history
Co-Authored-By: Loïc Sharma <[email protected]>
  • Loading branch information
joelverhagen and loic-sharma authored Jan 7, 2020
1 parent 97afab3 commit 41545bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ng/Jobs/LightningJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ private string GetConnectionString(
builder.AppendFormat("EndpointSuffix={0}", _arguments.GetOrDefault(endpointSuffixArgument, "core.windows.net"));

var connectionString = builder.ToString();
if(currentConnectionString != null && currentConnectionString != connectionString)
if (currentConnectionString != null && currentConnectionString != connectionString)
{
throw new InvalidOperationException("The same connection string must be used for all hives.");
}
Expand Down Expand Up @@ -769,4 +769,4 @@ private interface IStrike
Task FinishAsync();
}
}
}
}

0 comments on commit 41545bd

Please sign in to comment.