Skip to content

Commit 51f0894

Browse files
committed
fix: revert
1 parent 23cb811 commit 51f0894

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

internal/config/mqconfig_azure.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package config
33
import (
44
"context"
55
"fmt"
6+
"sync"
67

78
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
89
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/servicebus/armservicebus"
@@ -23,9 +24,9 @@ type AzureServiceBusConfig struct {
2324
LogTopic string `yaml:"log_topic" env:"AZURE_SERVICEBUS_LOG_TOPIC" desc:"Topic name for log queue" required:"N" default:"outpost-log"`
2425
LogSubscription string `yaml:"log_subscription" env:"AZURE_SERVICEBUS_LOG_SUBSCRIPTION" desc:"Subscription name for log queue" required:"N" default:"outpost-log-subscription"`
2526

26-
// connectionStringOnce sync.Once
27-
// connectionString string
28-
// connectionStringError error
27+
connectionStringOnce sync.Once
28+
connectionString string
29+
connectionStringError error
2930
}
3031

3132
func (c *AzureServiceBusConfig) IsConfigured() bool {

0 commit comments

Comments
 (0)