We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 892446a commit 3dc4213Copy full SHA for 3dc4213
elastic_datashader/config.py
@@ -94,7 +94,7 @@ def config_from_env(env) -> Config:
94
datashader_headers=load_datashader_headers(env.get("DATASHADER_HEADER_FILE", "headers.yaml")),
95
elastic_hosts=env.get("DATASHADER_ELASTIC", "http://localhost:9200"),
96
ellipse_render_mode=env.get("DATASHADER_ELLIPSE_RENDER_MODE", "matrix"),
97
- 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)),
98
hostname=getfqdn(),
99
log_level=get_log_level(env.get("DATASHADER_LOG_LEVEL", None)),
100
max_batch=int(env.get("DATASHADER_MAX_BATCH", 10_000)),
0 commit comments