We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6364f75 commit 253ed15Copy full SHA for 253ed15
1 file changed
DATA/common/setenv_calib.sh
@@ -380,12 +380,15 @@ get_proxy_connection()
380
if [[ $3 == "timeframe" ]]; then
381
PROXY_CONN+=" --environment DPL_OUTPUT_PROXY_ORDERED=1"
382
elif [[ $3 == "sporadic" ]]; then
383
- PROXY_CONN+=" --environment \"DPL_OUTPUT_PROXY_WHENANY=1 DPL_DONT_DROP_OLD_TIMESLICE=1\""
+ PROXY_CONN+=" --environment \"DPL_OUTPUT_PROXY_WHENANY=1 DPL_DONT_DROP_OLD_TIMESLICE=1\" --sporadic-inputs"
384
else
385
echo "invalid option $3, must be (sporadic|timeframe)" 1>&2
386
exit 1
387
fi
388
389
+ if [[ $2 == "input" && $3 == "sporadic" ]]; then
390
+ PROXY_CONN+=" --sporadic-outputs"
391
+ fi
392
if [[ "0${GEN_TOPO_VERBOSE:-}" == "01" ]]; then
393
echo PROXY_CONN = $PROXY_CONN 1>&2
394
0 commit comments