Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Miles/test releases #1

Open
wants to merge 5 commits into
base: mck/release-verification-script
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cassandra-release/test-releases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function test_deb() {
HEAP_NEWSIZE=500m MAX_HEAP_SIZE=1g cassandra -R -f
"
rm -f procfifo && mkfifo procfifo
docker run -i openjdk:8-jdk-slim-buster timeout 180 /bin/bash -c $COMMAND 2>&1 >procfifo &
docker run -i openjdk:8-jdk-slim-buster timeout 360 /bin/bash -c $COMMAND 2>&1 >procfifo &
Copy link
Member

@michaelsembwever michaelsembwever Sep 11, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, this change was also made in the original PR
( 4ea68da#diff-a636443cd5bfb43c9eddbf4ea4ce8546d63190b9326266245ab0068984fe59c1R84 )

PID=$!
success=false
while read LINE && ! $success ; do
Expand Down Expand Up @@ -72,7 +72,7 @@ yum install -y cassandra;
cassandra -R -f
"
rm -f procfifo && mkfifo procfifo
docker run -i centos timeout 180 /bin/bash -c $COMMAND 2>&1 >procfifo &
docker run -i centos timeout 360 /bin/bash -c $COMMAND 2>&1 >procfifo &
PID=$!
success=false
while read LINE && ! $success ; do
Expand Down