1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-25 12:45:18 +01:00

increase timeout for user delete sproc

This commit is contained in:
Kyle Spearrin 2017-01-14 19:50:52 -05:00
parent a5718a1843
commit 31c3835dd3

View File

@ -62,7 +62,7 @@ namespace Bit.Core.Repositories.SqlServer
$"[{Schema}].[{Table}_DeleteById]",
new { Id = user.Id },
commandType: CommandType.StoredProcedure,
commandTimeout: 60);
commandTimeout: 180);
}
}
}