aboutsummaryrefslogtreecommitdiff
path: root/weed/messaging/broker/broker_grpc_server.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/messaging/broker/broker_grpc_server.go')
-rw-r--r--weed/messaging/broker/broker_grpc_server.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/weed/messaging/broker/broker_grpc_server.go b/weed/messaging/broker/broker_grpc_server.go
index 1950326ec..8e207b1cc 100644
--- a/weed/messaging/broker/broker_grpc_server.go
+++ b/weed/messaging/broker/broker_grpc_server.go
@@ -4,7 +4,7 @@ import (
"context"
"fmt"
- "github.com/chrislusf/seaweedfs/weed/filer2"
+ "github.com/chrislusf/seaweedfs/weed/filer"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/pb/messaging_pb"
)
@@ -29,9 +29,9 @@ func (broker *MessageBroker) GetTopicConfiguration(c context.Context, request *m
}
func genTopicDir(namespace, topic string) string {
- return fmt.Sprintf("%s/%s/%s", filer2.TopicsDir, namespace, topic)
+ return fmt.Sprintf("%s/%s/%s", filer.TopicsDir, namespace, topic)
}
func genTopicDirEntry(namespace, topic string) (dir, entry string) {
- return fmt.Sprintf("%s/%s", filer2.TopicsDir, namespace), topic
+ return fmt.Sprintf("%s/%s", filer.TopicsDir, namespace), topic
}