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

  1. //go:build !elastic
  2. // +build !elastic
  3. package command
  4. import (
  5. "github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
  6. )
  7. func sendToElasticSearchFunc(servers string, esIndex string) (func(resp *filer_pb.SubscribeMetadataResponse) error, error) {
  8. return func(resp *filer_pb.SubscribeMetadataResponse) error {
  9. return nil
  10. }, nil
  11. }