-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix #18 invocations failing without namespace
When no namespace was set, invocations were failing due to the way strings were being built. Tested e2e with faasd and nodeinfo. Also fixes: #19 Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
- Loading branch information
Showing
9 changed files
with
455 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
module github.com/openfaas/cron-connector | ||
|
||
go 1.15 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/openfaas/connector-sdk v0.0.0-20201220114541-89f0ffcc5448 | ||
github.com/openfaas/faas-cli v0.0.0-20210208174727-eecaee04d592 | ||
github.com/openfaas/faas-provider v0.16.2 | ||
github.com/openfaas/connector-sdk v0.6.1 | ||
github.com/openfaas/faas-cli v0.0.0-20210617112918-72816d486cf7 | ||
github.com/openfaas/faas-provider v0.18.5 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/robfig/cron/v3 v3.0.0 | ||
github.com/robfig/cron/v3 v3.0.1 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters