diff --git a/Packages.props b/Packages.props index a4ece5485d..0cbdcdc4eb 100644 --- a/Packages.props +++ b/Packages.props @@ -33,7 +33,7 @@ - + diff --git a/bin/nuget/Microsoft.SqlServer.Migration.Assessment.1.0.20230301.46.nupkg b/bin/nuget/Microsoft.SqlServer.Migration.Assessment.1.0.20230301.46.nupkg deleted file mode 100644 index 3548cb9b7e..0000000000 Binary files a/bin/nuget/Microsoft.SqlServer.Migration.Assessment.1.0.20230301.46.nupkg and /dev/null differ diff --git a/bin/nuget/Microsoft.SqlServer.Migration.Assessment.1.0.20231130.1.nupkg b/bin/nuget/Microsoft.SqlServer.Migration.Assessment.1.0.20231130.1.nupkg new file mode 100644 index 0000000000..533b371e01 Binary files /dev/null and b/bin/nuget/Microsoft.SqlServer.Migration.Assessment.1.0.20231130.1.nupkg differ diff --git a/src/Microsoft.SqlTools.Migration/SqlDataQueryController.cs b/src/Microsoft.SqlTools.Migration/SqlDataQueryController.cs index 56ec3ca8d1..ce7eff66d4 100644 --- a/src/Microsoft.SqlTools.Migration/SqlDataQueryController.cs +++ b/src/Microsoft.SqlTools.Migration/SqlDataQueryController.cs @@ -71,7 +71,10 @@ public SqlDataQueryController( this.messages = new List>(); this.errors = new List>(); perfDataCache = new SqlPerfDataPointsCache(this.outputFolder, _logger); - dataCollector = new DataPointsCollector(new string[] { connectionString }, _logger); + dataCollector = new DataPointsCollector( + new string[] { connectionString }, + _logger, + new DataPointsCollectorOptions(true)); // set up timers to run perf/static collection at specified intervals System.Timers.Timer perfDataCollectionTimer = new System.Timers.Timer();