Skip to content

Commit

Permalink
Merge pull request fabric8io#2390 from coopstah13/coopstah13/2389
Browse files Browse the repository at this point in the history
  • Loading branch information
fusesource-ci committed Aug 18, 2020
2 parents ac0f084 + efc0a34 commit 653c79e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,7 @@
#### Bugs
* Fix #2373: Unable to create a Template on OCP3
* Fix #2316: Cannot load resource from stream without apiVersion
* Fix #2389: KubernetesServer does not use value from https in crud mode

#### Improvements
* Fix #2331: Fixed documentation for namespaced informer for all custom types implementing `Namespaced` interface
Expand Down
Expand Up @@ -53,7 +53,7 @@ public KubernetesServer(boolean https, boolean crudMode) {

public void before() {
mock = crudMode
? new KubernetesMockServer(new Context(), new MockWebServer(), new HashMap<ServerRequest, Queue<ServerResponse>>(), new KubernetesCrudDispatcher(), true)
? new KubernetesMockServer(new Context(), new MockWebServer(), new HashMap<ServerRequest, Queue<ServerResponse>>(), new KubernetesCrudDispatcher(), https)
: new KubernetesMockServer(https);
mock.init();
client = mock.createClient();
Expand Down

0 comments on commit 653c79e

Please sign in to comment.