Skip to content

Commit

Permalink
realy fix broken test
Browse files Browse the repository at this point in the history
  • Loading branch information
Alirexaa committed Jul 31, 2024
1 parent 3c50c01 commit d307969
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ namespace Microsoft.Extensions.DependencyInjection
{
public static class SqliteHealthCheckBuilderExtensions
{
[System.Obsolete("This method is obsolete and will be removed in a future version. use AddSqlite with same parameters.")]
[System.Obsolete("This method is obsolete and will be removed in a future version. use AddSqlite wi" +
"th same parameters.")]
public static Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder AddOracle(this Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder builder, System.Func<System.IServiceProvider, string> connectionStringFactory, string healthQuery = "select name from sqlite_master where type='table'", System.Action<Microsoft.Data.Sqlite.SqliteConnection>? configure = null, string? name = null, Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus? failureStatus = default, System.Collections.Generic.IEnumerable<string>? tags = null, System.TimeSpan? timeout = default) { }
public static Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder AddSqlite(this Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder builder, HealthChecks.Sqlite.SqliteHealthCheckOptions options, string? name = null, Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus? failureStatus = default, System.Collections.Generic.IEnumerable<string>? tags = null, System.TimeSpan? timeout = default) { }
public static Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder AddSqlite(this Microsoft.Extensions.DependencyInjection.IHealthChecksBuilder builder, System.Func<System.IServiceProvider, string> connectionStringFactory, string healthQuery = "select name from sqlite_master where type='table'", System.Action<Microsoft.Data.Sqlite.SqliteConnection>? configure = null, string? name = null, Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus? failureStatus = default, System.Collections.Generic.IEnumerable<string>? tags = null, System.TimeSpan? timeout = default) { }
Expand Down

0 comments on commit d307969

Please sign in to comment.