Skip to content

Commit

Permalink
Work around JDK 21.0.2 bug impacting scaling executors (#429)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Widdis <[email protected]>
  • Loading branch information
dbwiddis authored Jan 21, 2024
1 parent db9a325 commit 42e4cd4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [11, 21]
# Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426
java: [11, 21.0.1]
include:
- os: ubuntu-latest
java: 17
Expand All @@ -62,7 +63,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [11, 21]
# Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426
java: [11, 21.0.1]
include:
- os: ubuntu-latest
java: 17
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test_security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ jobs:
integ-test-with-security-linux:
strategy:
matrix:
java: [11, 17, 21]
# Don't use 21.0.2 https://github.com/opensearch-project/flow-framework/issues/426
java: [11, 17, 21.0.1]

name: Run Security Integration Tests on Linux
runs-on: ubuntu-latest
Expand Down

0 comments on commit 42e4cd4

Please sign in to comment.