Skip to content

Commit 0deeac0

Browse files
authored
Merge pull request #4857 from planetf1/issue4745a
Release 2.7 - #4745 correct checking of strict.ssl if value configured for clients
2 parents d326171 + 1c903ae commit 0deeac0

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

.github/workflows/codeql-analysis.yml

-11
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,6 @@ jobs:
3838
java-version: 11
3939
- name: Checkout repository
4040
uses: actions/checkout@v2
41-
with:
42-
# Must fetch at least the immediate parents so that if this is
43-
# a pull request then we can checkout the head of the pull request.
44-
# Only include this option if you are running this workflow on pull requests.
45-
fetch-depth: 2
46-
47-
# If this run was triggered by a pull request event then checkout
48-
# the head of the pull request instead of the merge commit.
49-
# Only include this step if you are running this workflow on pull requests.
50-
- run: git checkout HEAD^2
51-
if: ${{ github.event_name == 'pull_request' }}
5241

5342
# Initializes the CodeQL tools for scanning.
5443
- name: Initialize CodeQL

open-metadata-implementation/adapters/authentication-plugins/http-helper/src/main/java/org/odpi/openmetadata/http/HttpHelper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void checkServerTrusted(
5555
* Only if the override property strict.ssl is set
5656
*/
5757
public static void noStrictSSLIfConfigured() {
58-
if ("true".equalsIgnoreCase(System.getProperty("strict.ssl")))
58+
if ("false".equalsIgnoreCase(System.getProperty("strict.ssl")))
5959
{
6060
noStrictSSL();
6161
}

0 commit comments

Comments
 (0)