Skip to content

Commit

Permalink
Merge pull request #53 from spectriclabs/dev
Browse files Browse the repository at this point in the history
Dev -> Master
  • Loading branch information
desean1625 authored May 30, 2024
2 parents 892446a + 49bf934 commit 9f0fa9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ COPY --from=builder /build/dist/*.whl /home/datashader/tmp/
ENV PATH="$PATH:/home/datashader/.local/bin"
RUN pip install --upgrade pip && \
pip install --no-cache-dir /home/datashader/tmp/*.whl && \
pip install gunicorn==20.1.0 && \
pip install gunicorn==22.0.0 && \
pip install uvicorn==0.24.0

COPY deployment/logging_config.yml /opt/elastic_datashader/
Expand Down
2 changes: 1 addition & 1 deletion elastic_datashader/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def config_from_env(env) -> Config:
datashader_headers=load_datashader_headers(env.get("DATASHADER_HEADER_FILE", "headers.yaml")),
elastic_hosts=env.get("DATASHADER_ELASTIC", "http://localhost:9200"),
ellipse_render_mode=env.get("DATASHADER_ELLIPSE_RENDER_MODE", "matrix"),
ellipse_render_min_zoom=env.get("DATASHADER_ELLIPSE_RENDER_MIN_ZOOM", 8),
ellipse_render_min_zoom=int(env.get("DATASHADER_ELLIPSE_RENDER_MIN_ZOOM", 8)),
hostname=getfqdn(),
log_level=get_log_level(env.get("DATASHADER_LOG_LEVEL", None)),
max_batch=int(env.get("DATASHADER_MAX_BATCH", 10_000)),
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ humanize = "*"
uvicorn = {extras = ["standard"], version = "0.24.0", optional = true}
fastapi = ">=0.109.1"
georgio = "2023.156.924"
jinja2 = "3.1.2"
jinja2 = "3.1.4"

[tool.poetry.dev-dependencies]
pytest = "*"
Expand Down

0 comments on commit 9f0fa9e

Please sign in to comment.