Merge branch 'master' into workflow-dev

This commit is contained in:
Ryan Lettieri 2022-10-25 12:54:23 -06:00 committed by GitHub
commit 05d33197a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 10 additions and 8 deletions

View File

@ -9,7 +9,9 @@
// Uncomment to disable docker-in-docker and automatically proxy default /var/run/docker.sock to
// the localhost bind-mount /var/run/docker-host.sock.
// "BIND_LOCALHOST_DOCKER": "true"
// "BIND_LOCALHOST_DOCKER": "true",
"GOLANG_PROTOBUF_REGISTRATION_CONFLICT": "true"
},
"extensions": [
"golang.go",

View File

@ -4,7 +4,7 @@ metadata:
name: messagebus
namespace: default
spec:
type: pubsub.azure.servicebus
type: pubsub.azure.servicebus.topics
version: v1
metadata:
- name: consumerID

View File

@ -4,7 +4,7 @@ metadata:
name: messagebus
namespace: default
spec:
type: pubsub.azure.servicebus
type: pubsub.azure.servicebus.topics
version: v1
metadata:
- name: consumerID

View File

@ -4,7 +4,7 @@ metadata:
name: messagebus
namespace: default
spec:
type: pubsub.azure.servicebus
type: pubsub.azure.servicebus.topics
version: v1
metadata:
- name: consumerID

View File

@ -4,7 +4,7 @@ metadata:
name: messagebus
namespace: default
spec:
type: pubsub.azure.servicebus
type: pubsub.azure.servicebus.topics
version: v1
metadata:
- name: consumerID

View File

@ -4,7 +4,7 @@ metadata:
name: messagebus
namespace: default
spec:
type: pubsub.azure.servicebus
type: pubsub.azure.servicebus.topics
version: v1
metadata:
- name: consumerID

View File

@ -25,7 +25,7 @@ import (
// Pub-Sub.
pubsub_servicebus "github.com/dapr/components-contrib/pubsub/azure/servicebus.topics"
pubsub_servicebus "github.com/dapr/components-contrib/pubsub/azure/servicebus/topics"
secretstore_env "github.com/dapr/components-contrib/secretstores/local/env"
pubsub_loader "github.com/dapr/dapr/pkg/components/pubsub"
secretstores_loader "github.com/dapr/dapr/pkg/components/secretstores"
@ -1050,7 +1050,7 @@ func componentRuntimeOptions() []runtime.Option {
pubsubRegistry := pubsub_loader.NewRegistry()
pubsubRegistry.Logger = log
pubsubRegistry.RegisterComponent(pubsub_servicebus.NewAzureServiceBus, "azure.servicebus")
pubsubRegistry.RegisterComponent(pubsub_servicebus.NewAzureServiceBusTopics, "azure.servicebus.topics")
secretstoreRegistry := secretstores_loader.NewRegistry()
secretstoreRegistry.Logger = log