Skip to content

Commit aeb9aee

Browse files
committed
rc1: update --size-limit to 100M for flux-restore
Problem: The size limit on the flux-restore command used in rc1 is written in bytes, which makes it difficult to determine at first glance the value being used. The flux-restore --size-limit option now takes suffixed arguments, so switch to "100M" instead of 100M in bytes.
1 parent 3cd7b0f commit aeb9aee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

etc/rc1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if test $RANK -eq 0; then
4747
flux module load ${backingmod} truncate
4848
fi
4949
echo "restoring content from ${dumpfile}"
50-
flux restore --quiet --checkpoint --size-limit=104857600 ${dumpfile}
50+
flux restore --quiet --checkpoint --size-limit=100M ${dumpfile}
5151
if test -n "${dumplink}"; then
5252
rm -f ${dumplink}
5353
fi

0 commit comments

Comments
 (0)