You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
331 B
14 lines
331 B
//go:build !elastic
|
|
// +build !elastic
|
|
|
|
package command
|
|
|
|
import (
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
)
|
|
|
|
func sendToElasticSearchFunc(servers string, esIndex string) (func(resp *filer_pb.SubscribeMetadataResponse) error, error) {
|
|
return func(resp *filer_pb.SubscribeMetadataResponse) error {
|
|
return nil
|
|
}, nil
|
|
}
|