Skip to content

Commit

Permalink
disable dapr
Browse files Browse the repository at this point in the history
  • Loading branch information
lkingland committed Jun 9, 2023
1 parent 845855a commit 38c34cc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions hack/allocate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,10 @@ EOF
dapr_runtime() {
echo "${em}⑦ Dapr${me}"

# See https://github.com/knative/func/issues/1806
echo " ${red}Temporarily Disabled, see issue #1806${me}"
return

echo "Installing dapr runtime using dapr version:\\n$(dapr version)"

# Install Dapr Runtime
Expand Down
4 changes: 4 additions & 0 deletions pkg/functions/client_int_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,10 @@ func Handle(ctx context.Context, res http.ResponseWriter, req *http.Request) {
// TestInvoke_ServiceToService ensures that a Function can invoke another
// service via localhost service discovery api provided by the Dapr sidecar.
func TestInvoke_ServiceToService(t *testing.T) {
// Temporarily disable tests which require Dapr
// See https://github.com/knative/func/issues/1806
t.Log("TestInvoke_ServiceToService temporarily disabled as it depends on Dapr runtme which is failing to install")

var (
verbose = true
ctx = context.Background()
Expand Down

0 comments on commit 38c34cc

Please sign in to comment.