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 a87cb2e commit d0aeda4Copy full SHA for d0aeda4
scripts/run-test-examples.sh
@@ -52,9 +52,9 @@ do
52
echo "==========================================="
53
54
if [ ! -z `echo $file | grep queues` ]; then
55
- # Check for queues which cannot be run unless 24.03+
56
- if [ ! -z `echo $COHERENCE_VERSION | grep 24.03`]; then
57
- go run -race $file
+ # Check for queues which cannot be run unless we have versions 24.09, 14.1.2, or 15.1.1
+ if echo "$COHERENCE_VERSION" | grep -q -e 24.09 -e 14.1.2 -e 15.1.1; then
+ go run -race "$file"
58
fi
59
else
60
go run -race $file
0 commit comments