File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ COPY --from=builder /build/dist/*.whl /home/datashader/tmp/
2323ENV PATH="$PATH:/home/datashader/.local/bin"
2424RUN 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
2929COPY deployment/logging_config.yml /opt/elastic_datashader/
Original file line number Diff line number Diff 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 )),
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ humanize = "*"
3939uvicorn = {extras = [" standard" ], version = " 0.24.0" , optional = true }
4040fastapi = " >=0.109.1"
4141georgio = " 2023.156.924"
42- jinja2 = " 3.1.2 "
42+ jinja2 = " 3.1.4 "
4343
4444[tool .poetry .dev-dependencies ]
4545pytest = " *"
You can’t perform that action at this time.
0 commit comments