File tree 3 files changed +3
-3
lines changed
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/
23
23
ENV PATH="$PATH:/home/datashader/.local/bin"
24
24
RUN pip install --upgrade pip && \
25
25
pip install --no-cache-dir /home/datashader/tmp/*.whl && \
26
- pip install gunicorn==20.1 .0 && \
26
+ pip install gunicorn==22.0 .0 && \
27
27
pip install uvicorn==0.24.0
28
28
29
29
COPY 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:
94
94
datashader_headers = load_datashader_headers (env .get ("DATASHADER_HEADER_FILE" , "headers.yaml" )),
95
95
elastic_hosts = env .get ("DATASHADER_ELASTIC" , "http://localhost:9200" ),
96
96
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 ) ),
98
98
hostname = getfqdn (),
99
99
log_level = get_log_level (env .get ("DATASHADER_LOG_LEVEL" , None )),
100
100
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 = "*"
39
39
uvicorn = {extras = [" standard" ], version = " 0.24.0" , optional = true }
40
40
fastapi = " >=0.109.1"
41
41
georgio = " 2023.156.924"
42
- jinja2 = " 3.1.2 "
42
+ jinja2 = " 3.1.4 "
43
43
44
44
[tool .poetry .dev-dependencies ]
45
45
pytest = " *"
You can’t perform that action at this time.
0 commit comments