-
Notifications
You must be signed in to change notification settings - Fork 209
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issue with CE scheduler deployment and management CLI
- Loading branch information
1 parent
d351223
commit fe44462
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
from haupt.polyconf.settings import PLATFORM_CONFIG | ||
|
||
if PLATFORM_CONFIG.is_streams_service: | ||
if PLATFORM_CONFIG.is_scheduler_service: | ||
pass | ||
elif PLATFORM_CONFIG.is_streams_service: | ||
from haupt.streams.patterns import * # noqa | ||
else: | ||
from haupt.apis.patterns import * # noqa |