Skip to content
This repository has been archived by the owner on Sep 5, 2018. It is now read-only.

Commit

Permalink
Fix NuGet/NuGetGallery#1920 by adding necessary fields to connection …
Browse files Browse the repository at this point in the history
…string
  • Loading branch information
analogrelay committed Feb 21, 2014
1 parent d5c94ba commit 6fec499
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/NuCmd/Commands/Db/CreateUserCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,10 @@ await connection.QueryAsync<int>(
var loginConnStr = new SqlConnectionStringBuilder(connInfo.ConnectionString.ConnectionString)
{
UserID = loginName,
Password = loginPassword
Password = loginPassword,
ConnectTimeout = 30,
Encrypt = true,
IntegratedSecurity = false
};

if (Clip)
Expand Down

0 comments on commit 6fec499

Please sign in to comment.