EOX GitLab Instance

Skip to content
Snippets Groups Projects
Commit 223d72cc authored by Lubomir Dolezal's avatar Lubomir Dolezal
Browse files

maxSocketsPerHostSearch configurable

parent de2bfd1c
No related branches found
No related tags found
1 merge request!8Concurrency client
......@@ -132,6 +132,7 @@
{{- end }}
"disableSearchParams": {{ .Values.config.disableSearchParams }},
"enableGetEOCoverageSet": {{ .Values.config.enableGetEOCoverageSet }},
"maxSocketsPerHostSearch": {{.Values.config.maxSocketsPerHostSearch }},
"footprintFillColor": {{ .Values.config.footprintFillColor | quote }},
"footprintStrokeColor": {{ .Values.config.footprintStrokeColor | quote }},
"filterFillColor": {{ .Values.config.filterFillColor | quote }},
......
......@@ -61,6 +61,7 @@ config:
maxTooltips: 1
disableSearchParams: false
enableGetEOCoverageSet: true
maxSocketsPerHostSearch: 6
footprintFillColor: "rgba(0, 0, 0, 0.2)"
footprintStrokeColor: "rgba(0, 0, 0, 1)"
filterFillColor: "rgba(0, 165, 255, 0)"
......
......@@ -608,6 +608,11 @@
"description": "Enabling Multi files Download via GetEOCoverageSet requests if 'true'.",
"type": "boolean",
"default": false
},
"maxSocketsPerHostSearch": {
"description": "Maximum number of requests for thumbnails sent in parallel. Can not exceed 6.",
"type": "integer",
"default": 6
}
},
"oneOf": [{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment