Skip to content

Commit 9f0fa9e

Browse files
authored
Merge pull request #53 from spectriclabs/dev
Dev -> Master
2 parents 892446a + 49bf934 commit 9f0fa9e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ COPY --from=builder /build/dist/*.whl /home/datashader/tmp/
2323
ENV PATH="$PATH:/home/datashader/.local/bin"
2424
RUN pip install --upgrade pip && \
2525
pip install --no-cache-dir /home/datashader/tmp/*.whl && \
26-
pip install gunicorn==20.1.0 && \
26+
pip install gunicorn==22.0.0 && \
2727
pip install uvicorn==0.24.0
2828

2929
COPY deployment/logging_config.yml /opt/elastic_datashader/

Diff for: elastic_datashader/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def config_from_env(env) -> Config:
9494
datashader_headers=load_datashader_headers(env.get("DATASHADER_HEADER_FILE", "headers.yaml")),
9595
elastic_hosts=env.get("DATASHADER_ELASTIC", "http://localhost:9200"),
9696
ellipse_render_mode=env.get("DATASHADER_ELLIPSE_RENDER_MODE", "matrix"),
97-
ellipse_render_min_zoom=env.get("DATASHADER_ELLIPSE_RENDER_MIN_ZOOM", 8),
97+
ellipse_render_min_zoom=int(env.get("DATASHADER_ELLIPSE_RENDER_MIN_ZOOM", 8)),
9898
hostname=getfqdn(),
9999
log_level=get_log_level(env.get("DATASHADER_LOG_LEVEL", None)),
100100
max_batch=int(env.get("DATASHADER_MAX_BATCH", 10_000)),

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ humanize = "*"
3939
uvicorn = {extras = ["standard"], version = "0.24.0", optional = true}
4040
fastapi = ">=0.109.1"
4141
georgio = "2023.156.924"
42-
jinja2 = "3.1.2"
42+
jinja2 = "3.1.4"
4343

4444
[tool.poetry.dev-dependencies]
4545
pytest = "*"

0 commit comments

Comments
 (0)