Skip to content

Commit

Permalink
Fix unable to retrieve urls (#208)
Browse files Browse the repository at this point in the history
Fix #206
  • Loading branch information
olevitt authored Mar 17, 2023
1 parent 7d04102 commit 1106a79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ private Service getServiceFromRelease(
KubernetesClient client = kubernetesClientProvider.getUserClient(region, user);
InputStream inputStream =
new ByteArrayInputStream(manifest.getBytes(Charset.forName("UTF-8")));
List<HasMetadata> hasMetadatas = client.load(inputStream).get();
List<HasMetadata> hasMetadatas = client.load(inputStream).items();
List<Ingress> ingresses =
hasMetadatas.stream()
.filter(hasMetadata -> hasMetadata instanceof Ingress)
Expand Down

0 comments on commit 1106a79

Please sign in to comment.