Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into CLIENT-2417-rm-parts-s…
Browse files Browse the repository at this point in the history
…etup
  • Loading branch information
juliannguyen4 committed Oct 21, 2024
2 parents bf3e591 + 14d97bd commit 0c4a93e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/run-ee-server/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ runs:
# so we have to manually enable it
load: true

- run: docker run -d --name aerospike -p 3000:3000 ${{ env.SECURITY_IMAGE_NAME }}
- run: docker run -d --name aerospike -p 3000:3000 -e DEFAULT_TTL=2592000 ${{ env.SECURITY_IMAGE_NAME }}
shell: bash

- uses: ./.github/actions/wait-for-as-server-to-start
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-server-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
password: ${{ secrets.DOCKER_HUB_BOT_PW }}

- name: Run server RC
run: docker run -d -p 3000:3000 --name aerospike ${{ vars.SERVER_RC_REPO_LINK }}
run: docker run -d -p 3000:3000 --name aerospike -e DEFAULT_TTL=2592000 ${{ vars.SERVER_RC_REPO_LINK }}

- name: Create config.conf
run: cp config.conf.template config.conf
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ jobs:
run: pip install -r test/requirements.txt

- name: Run Aerospike server
run: docker run -d --name aerospike -p 3000-3002:3000-3002 aerospike/aerospike-server
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=2592000 aerospike/aerospike-server

- name: Create config.conf
run: cp config.conf.template config.conf
Expand Down Expand Up @@ -286,11 +286,11 @@ jobs:

- name: Run Aerospike server release candidate with latest tag
if: ${{ contains(github.event.pull_request.labels.*.name, 'new-server-features') }}
run: docker run -d --name aerospike -p 3000-3002:3000-3002 aerospike/aerospike-server-rc:latest
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=2592000 aerospike/aerospike-server-rc:latest

- name: Run Aerospike server
if: ${{ !contains(github.event.pull_request.labels.*.name, 'new-server-features') }}
run: docker run -d --name aerospike -p 3000-3002:3000-3002 aerospike/aerospike-server
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=2592000 aerospike/aerospike-server

- name: Create config.conf
run: cp config.conf.template config.conf
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
run: pip install -r test/requirements.txt

- name: Run lowest supported server
run: docker run -d --name aerospike -p 3000-3002:3000-3002 aerospike/aerospike-server:${{ vars.LOWEST_SUPPORTED_SERVER_VERSION }}
run: docker run -d --name aerospike -p 3000-3002:3000-3002 -e DEFAULT_TTL=2592000 aerospike/aerospike-server:${{ vars.LOWEST_SUPPORTED_SERVER_VERSION }}

- name: Create config.conf
run: cp config.conf.template config.conf
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
15.2.0rc2.dev1
15.2.0rc2.dev2

0 comments on commit 0c4a93e

Please sign in to comment.