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
@saintstack it means the older foundationDB test spec syntax, prior to TOML support, where workload options were passed around as strings. For vector options, that format represents multiple values as a single comma-separated string, such as a,b,c. So the TOML parser change converts ["a", "b", "c"] into a,b,c before the existing workload option parser reads it.
Error: `Error while executing command: # compatible with bash and zsh
ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -i ${HOME}/.ssh_key
-o ServerAliveInterval=9 ec2-user@${MAC_EC2_HOST} "
set -e -o noclobber
BUILDNUM=${CODEBUILD_BUILD_NUMBER}
WAIT_TIME=14400 # 4 hours
LOCK_STALE=4500 # 75 minutes
LOCK=/tmp/ci.lock
"'
macOS stat flags, not linux compatible
lock_mtime() { stat -f %m $LOCK || echo 0 }
I=0
while ! (echo $BUILDNUM >$LOCK) 2>/dev/null ; do
if (( ++I >= WAIT_TIME )); then
echo "timeout waiting for ci.lock after $I seconds"
exit 1
fi
if (( $(date +%s) - $(lock_mtime) >= LOCK_STALE )); then
echo "lock expired after $LOCK_STALE seconds ..."
# racy but sleep so chances are low
sleep $(( 3 + RANDOM % 8 ))
if (( $(date +%s) - $(lock_mtime) >= LOCK_STALE )); then
echo "lock holder is gone"
rm -f $LOCK
else
echo "new lock holder"
fi
fi
sleep 1
done
echo "acquired ci.lock"
'
. Reason: exit status 1`
Build Workspace zip file of the working directory (available for 30 days)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #7469
Testing
ninja -C build fdbserverbuild/bin/fdbserver -r unittests -f /fdbserver/tester/TestSpecParsergit diff --check