Skip to content

Commit

Permalink
fix: https configuration ignored for OpenShiftServer in CRUD mode
Browse files Browse the repository at this point in the history
  • Loading branch information
manusa committed Jul 23, 2021
1 parent d70d021 commit 79284f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### 5.6-SNAPSHOT

#### Bugs
Fix : https configuration ignored for OpenShiftServer in CRUD mode

#### Improvements

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public OpenShiftServer(boolean https, boolean crudMode) {

public void before() {
mock = crudMode
? new OpenShiftMockServer(new Context(), new MockWebServer(), new HashMap<>(), new KubernetesCrudDispatcher(), true)
? new OpenShiftMockServer(new Context(), new MockWebServer(), new HashMap<>(), new KubernetesCrudDispatcher(), https)
: new OpenShiftMockServer(https);
mock.init();
client = mock.createOpenShiftClient();
Expand Down

0 comments on commit 79284f3

Please sign in to comment.