Skip to content

Commit 653a2ec

Browse files
author
Diego Rodriguez Baquero
committed
chore(start.sh): lower threshold for min_uses=2 to 98%
1 parent 4292ce7 commit 653a2ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

container/start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ min_uses=1
4040
min_free="50G"
4141

4242
# If disk is full, set min_uses to 2
43-
if [ $(df -h /usr/src/app/shared | awk '(NR>1) { printf "%d", $5}') -ge 99 ]; then
43+
if [ $(df -h /usr/src/app/shared | awk '(NR>1) { printf "%d", $5}') -ge 98 ]; then
4444
min_uses=2;
4545
fi
4646

0 commit comments

Comments
 (0)