Skip to content

Commit

Permalink
Merge pull request #6 from papermerge/minor-fixes
Browse files Browse the repository at this point in the history
minor fixes
  • Loading branch information
ciur authored May 28, 2024
2 parents 3ad64ff + 448fd5b commit 1e135e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/run.bash
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ fi

exec_worker() {
export VIRTUAL_ENV=/app/venv
cd /app && poetry run celery -A s3worker worker ${S3_WORKER_ARGS}
cd /app && poetry run celery -A s3worker.celery_app worker ${S3_WORKER_ARGS}
}

case $CMD in
Expand Down
2 changes: 1 addition & 1 deletion s3worker/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Settings(BaseSettings):
papermerge__redis__url: str | None = None
papermerge__main__media_root: str
papermerge__main__logging_cfg: Path | None = None
papermerge__database__url: str | None = None
papermerge__database__url: str = 'sqlite:////db/db.sqlite3'

@lru_cache()
def get_settings():
Expand Down

0 comments on commit 1e135e6

Please sign in to comment.