-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Fix pipeline java - spring sometimes hang in JDK 21 + Ubuntu
#48608
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
Changes from all commits
e23b6c8
6149dd6
47cadf1
7b4dff5
4dd3952
8e2a3a1
6a38d7e
7cbdcdb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -34,6 +34,9 @@ parameters: | |||||
| - name: MatrixReplace | ||||||
| type: object | ||||||
| default: [] | ||||||
| - name: testAllHttpClients | ||||||
| type: boolean | ||||||
| default: false | ||||||
| - name: PreBuildSteps | ||||||
| type: object | ||||||
| default: [] | ||||||
|
|
@@ -121,7 +124,8 @@ extends: | |||||
| - ${{ each replacement in parameters.MatrixReplace }}: | ||||||
| - ${{ replacement }} | ||||||
|
|
||||||
| - AZURE_TEST.*=.*/ | ||||||
| - ${{ if ne(parameters.testAllHttpClients, true) }}: | ||||||
| - AZURE_TEST.*=.*/ | ||||||
|
||||||
| - AZURE_TEST.*=.*/ | |
| - AZURE_TEST_HTTP_CLIENTS=.*/ |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -91,7 +91,7 @@ | |
| }, | ||
| { | ||
| "Agent": { | ||
| "ubuntu-24.04": { "OSVmImage": "env:LINUXVMIMAGE", "Pool": "env:LINUXPOOL" } | ||
| "windows-2022": { "OSVmImage": "env:WINDOWSVMIMAGE", "Pool": "env:WINDOWSPOOL" } | ||
| }, | ||
| "JavaTestVersion": "1.21", | ||
| "AZURE_TEST_HTTP_CLIENTS": "netty", | ||
|
Comment on lines
93
to
97
|
||
|
|
@@ -106,7 +106,7 @@ | |
| }, | ||
| { | ||
| "Agent": { | ||
| "ubuntu-24.04": { "OSVmImage": "env:LINUXVMIMAGE", "Pool": "env:LINUXPOOL" } | ||
| "windows-2022": { "OSVmImage": "env:WINDOWSVMIMAGE", "Pool": "env:WINDOWSPOOL" } | ||
| }, | ||
| "JavaTestVersion": "1.21", | ||
| "AZURE_TEST_HTTP_CLIENTS": "JdkHttpClientProvider", | ||
|
|
@@ -121,7 +121,7 @@ | |
| }, | ||
| { | ||
| "Agent": { | ||
| "ubuntu-24.04": { "OSVmImage": "env:LINUXVMIMAGE", "Pool": "env:LINUXPOOL" } | ||
| "windows-2022": { "OSVmImage": "env:WINDOWSVMIMAGE", "Pool": "env:WINDOWSPOOL" } | ||
| }, | ||
| "JavaTestVersion": "1.21", | ||
| "AZURE_TEST_HTTP_CLIENTS": "VertxHttpClientProvider", | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -611,5 +611,6 @@ extends: | |||||
| skipVerifyChangeLog: true | ||||||
| releaseInBatch: ${{ parameters.release_springcloudazurestartermonitor }} | ||||||
| TestParallelization: '1' | ||||||
| testAllHttpClients: true | ||||||
| MatrixFilters: | ||||||
|
||||||
| MatrixFilters: | |
| matrixFilters: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
testAllHttpClientsis the only parameter in this template using lowerCamelCase; all other parameters use PascalCase (e.g.,TestPipeline,MatrixReplace,TestParallelization). For consistency and discoverability, rename this toTestAllHttpClients(and update all call sites).