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
I accidentally found db test nightly failures (#3017) was not reported correctly. This was introduced by #2880,
where if [ echo ${PIPESTATUS[0]} -ne 0 ];
should be if [ ${PIPESTATUS[0]} -ne 0 ]; or if [ `echo ${PIPESTATUS[0]}` -ne 0 ];
The text was updated successfully, but these errors were encountered:
I accidentally found db test nightly failures (#3017) was not reported correctly. This was introduced by #2880,
where
if [ echo ${PIPESTATUS[0]} -ne 0 ];
should be
if [ ${PIPESTATUS[0]} -ne 0 ];
orif [ `echo ${PIPESTATUS[0]}` -ne 0 ];
The text was updated successfully, but these errors were encountered: