Skip to content
Snippets Groups Projects
Commit 8255ace6 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

Merge branch 'wdconinc-main-patch-46107' into 'main'

feat: UPLOADFULL every n files

See merge request !27
parents ab11999d b69eb27c
No related branches found
No related tags found
1 merge request!27feat: UPLOADFULL every n files
Pipeline #44458 passed with stage
in 1 minute and 47 seconds
......@@ -289,7 +289,7 @@ if [ -f ${INPUT_FILE} ] ; then
fi
# Data egress if S3RW_ACCESS_KEY and S3RW_SECRET_KEY in environment
if [ "${UPLOADFULL:-false}" == "true" ] ; then
if [[ ${UPLOADFULL:-} > 0 && $((TASK % UPLOADFULL)) == 0 ]] ; then
if [ -x ${MC} ] ; then
if [ -n "${ONLINE:-}" ] ; then
if [ -n "${S3RW_ACCESS_KEY:-}" -a -n "${S3RW_SECRET_KEY:-}" ] ; then
......
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