Skip to content

Commit 09c0853

Browse files
committed
Do not initialize processors on migrate
1 parent d37a391 commit 09c0853

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llmstack/processors/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def ready(self) -> None:
2626
from sys import argv
2727

2828
# If this is collecstatic command, do not load the processor subclasses
29-
if "collectstatic" in argv or "createcachetable" in argv or "clearcache" in argv:
29+
if "collectstatic" in argv or "createcachetable" in argv or "clearcache" in argv or "migrate" in argv:
3030
return
3131

3232
logger.info("Initializing Processor subclasses")

0 commit comments

Comments
 (0)