Skip to content

Commit

Permalink
feature: implement icij-worker workers start
Browse files Browse the repository at this point in the history
  • Loading branch information
ClemDoum committed Mar 8, 2024
1 parent 46d7e40 commit 22326da
Show file tree
Hide file tree
Showing 30 changed files with 555 additions and 1,233 deletions.
2 changes: 1 addition & 1 deletion neo4j
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ Please run ./neo4j format"
command -v poetry 1>/dev/null 2>&1 || echo "poetry is not installed"

cd "$PYTHON_APP_DIR"
poetry install --no-interaction -vvv --with=dev --no-ansi
poetry install --no-interaction -vvv --with=dev --with=cli --no-ansi
echo "Python setup succeeded !"
elif _should_run_project "neo4j_graph_widget_plugin"; then
_print_step "Setting up neo4j_graph_widget_plugin"
Expand Down
4 changes: 2 additions & 2 deletions neo4j-app/neo4j_app/app/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def _lifespan_async_app_config_path() -> Path:
return _ASYNC_APP_CONFIG_PATH


def loggers_enter(**_):
def http_loggers_enter(**_):
config = lifespan_config()
config.setup_loggers()
logger.info("Loggers ready to log 💬")
Expand Down Expand Up @@ -147,7 +147,7 @@ async def run_http_service_deps(

HTTP_SERVICE_LIFESPAN_DEPS = [
("configuration reading", config_enter, None),
("loggers setup", loggers_enter, None),
("loggers setup", http_loggers_enter, None),
(
"write async config for workers",
write_async_app_config_enter,
Expand Down
1 change: 0 additions & 1 deletion neo4j-app/neo4j_app/core/neo4j/migrations/__init__.py

This file was deleted.

327 changes: 0 additions & 327 deletions neo4j-app/neo4j_app/core/neo4j/migrations/migrate.py

This file was deleted.

Loading

0 comments on commit 22326da

Please sign in to comment.