Fix extra character

This commit is contained in:
Mike Reeves
2021-02-10 12:58:02 -05:00
parent 9eb1e6a448
commit f8903c2554

View File

@@ -1184,7 +1184,7 @@ es_heapsize() {
# Determine ES Heap Size
if [ "$total_mem" -lt 8000 ] ; then
ES_HEAP_SIZE="600m"
elif [ "$total_mem" -ge 100000 ]; then1
elif [ "$total_mem" -ge 100000 ]; then
# Set a max of 25GB for heap size
# https://www.elastic.co/guide/en/elasticsearch/guide/current/heap-sizing.html
ES_HEAP_SIZE="25000m"