Skip to content

Commit

Permalink
Fix compilation of Samples.Security.AspNetCore5 (#6512)
Browse files Browse the repository at this point in the history
## Summary of changes

Make Samples.Security.AspNetCore5 compile again.

## Implementation details

A field that was inadvertently removed was actually used.
  • Loading branch information
kevingosse authored Jan 8, 2025
1 parent dc6b7c1 commit c0655f6
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public class IastController : Controller
{
private static SQLiteConnection _dbConnectionSystemData = null;
private static SqliteConnection _dbConnectionSystemDataMicrosoftData = null;
private static SqlConnection _dbConnectionSystemDataSqlClient = null;
private static IMongoDatabase _mongoDb = null;
#if NETCOREAPP3_0_OR_GREATER
private static NpgsqlConnection _dbConnectionNpgsql = null;
Expand Down

0 comments on commit c0655f6

Please sign in to comment.