Skip to content

Commit

Permalink
fix(openfaas): external endpoints had incorrect path
Browse files Browse the repository at this point in the history
  • Loading branch information
edvald authored and eysi09 committed Sep 6, 2018
1 parent 9349203 commit 64de898
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion garden-cli/src/plugins/openfaas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ function getK8sProvider(ctx: PluginContext): KubernetesProvider {
}

function getServicePath(service: OpenFaasService) {
return join("function", service.name)
return join("/", "function", service.name)
}

async function getInternalGatewayUrl(ctx: PluginContext) {
Expand Down

0 comments on commit 64de898

Please sign in to comment.