Skip to content

Commit 6121cf3

Browse files
authored
Do not automatically enable tables in the Engine. (#426)
1 parent 62badd6 commit 6121cf3

File tree

1 file changed

+2
-2
lines changed
  • src/Microsoft.Performance.Toolkit.Engine

1 file changed

+2
-2
lines changed

src/Microsoft.Performance.Toolkit.Engine/Engine.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ private static Engine CreateCore(EngineCreateInfo createInfo, DataSourceSet inte
794794
pluginOptionsSystem.TryLoadAsync()
795795
.ConfigureAwait(false)
796796
.GetAwaiter()
797-
.GetResult();;
797+
.GetResult();
798798

799799
instance.applicationEnvironment = new EngineApplicationEnvironment(
800800
applicationName: applicationName,
@@ -1117,7 +1117,7 @@ private List<ProcessingSourceExecutor> CreateExecutors(
11171117
x => ConsoleLogger.Create(x.GetType()), // todo: this shouldn't be using a console logger by default
11181118
processingSource,
11191119
dsg, // todo #214
1120-
processingSource.Instance.MetadataTables,
1120+
[],
11211121
this.CreateInfo.ProcessEnvironmentFactory.CreateProcessorEnvironment(processingSource.Guid, dsg),
11221122
processorOptions);
11231123

0 commit comments

Comments
 (0)