Skip to content

Commit ff261e1

Browse files
test issue fix
1 parent 89b4d2d commit ff261e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ContentProcessor/src/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _initialize_application(self):
3131
# Add Azure Credential
3232
self.application_context.set_credential(DefaultAzureCredential())
3333

34-
async def run(self):
34+
async def run(self, test_mode: bool = False):
3535
# Get Process lists from the configuration - ex. ["extract", "transform", "evaluate", "save", "custom1", "custom2"....]
3636
steps = self.application_context.configuration.app_process_steps
3737

@@ -53,7 +53,7 @@ async def run(self):
5353
)
5454

5555
# Start All registered processes
56-
await handler_host_manager.start_handler_processes()
56+
await handler_host_manager.start_handler_processes(test_mode)
5757

5858

5959
async def main():

0 commit comments

Comments
 (0)