Skip to content

Commit bd5cddf

Browse files
committed
add WEB_CONCURRENCY in entrypoint
1 parent 795fa87 commit bd5cddf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dockerfiles/entrypoint-es.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
2+
export WEB_CONCURRENCY="${WEB_CONCURRENCY:-10}"
33
function validate_elasticsearch {
44
health=$(curl -s -o /dev/null -w '%{http_code}' "http://${ES_HOST}:${ES_PORT}/_cluster/health")
55
if [ "$health" -eq 200 ]; then

dockerfiles/entrypoint-os.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
2+
export WEB_CONCURRENCY="${WEB_CONCURRENCY:-10}"
33
function validate_opensearch {
44
health=$(curl -s -o /dev/null -w '%{http_code}' "http://${ES_HOST}:${ES_PORT}/_cluster/health")
55
if [ "$health" -eq 200 ]; then

0 commit comments

Comments
 (0)