You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The multiple-pipeline-playback.sh and multiple-pipeline-capture.sh scripts are broken, they do nothing. They check $PIPELINE_COUNT before parsing topology by calling func_pipeline_export
The text was updated successfully, but these errors were encountered:
@lyakh do you mean to say that this line is wrong?
[[ $PIPELINE_COUNT -gt ${OPT_VALUE_lst['c']} ]] && max_count=${OPT_VALUE_lst['c']} || max_count=$PIPELINE_COUNT
f
I must say I have zero understanding of these scripts.
@plbossart it isn't about the contents of that line, it's about when it is executed, respectively when the $PIPELINE_COUNT variable is evaluated. Evaluating it before it is set makes no sense and it is only set in func_pipeline_export()
The multiple-pipeline-playback.sh and multiple-pipeline-capture.sh scripts are broken, they do nothing. They check
$PIPELINE_COUNT
before parsing topology by callingfunc_pipeline_export
The text was updated successfully, but these errors were encountered: