Skip to content

Commit

Permalink
This is an exceedingly stupid workaround to an even dumber problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Craver committed Apr 18, 2019
1 parent b3eb004 commit 68416ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Opserver.Core/Data/SQL/SQLNode.AvailabilityGroups.cs
Expand Up @@ -20,7 +20,7 @@ public partial class SQLNode
);
List<AGInfo> ags;
using (var multi = await conn.QueryMultipleAsync(sql, commandTimeout: 600).ConfigureAwait(false))
using (var multi = await conn.QueryMultipleAsync(sql, commandTimeout: 1200).ConfigureAwait(false))
{
ags = await multi.ReadAsync<AGInfo>().ConfigureAwait(false).AsList().ConfigureAwait(false);
var replicas = await multi.ReadAsync<AGReplica>().ConfigureAwait(false).AsList().ConfigureAwait(false);
Expand Down

0 comments on commit 68416ac

Please sign in to comment.