Skip to content

Commit 63ee12c

Browse files
committed
added ! because fileProcessor can me null., now no
1 parent 9765753 commit 63ee12c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Files/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
bool executeImmediately = configuration.GetValue<bool>("SchedulerSettings:ExecuteImmediately");
1313

1414
// Get the file processor from the service provider
15-
var fileProcessor = serviceProvider.GetService<IFileProcessor>();
15+
var fileProcessor = serviceProvider.GetService<IFileProcessor>()!;
1616

1717
// Create the task scheduler with the configured executeImmediately setting
1818
var scheduler = new TaskScheduler(() => fileProcessor.ProcessFilesAsync(), executeImmediately);

0 commit comments

Comments
 (0)