remove kafkaRunner (no longer used)

This commit is contained in:
Travis Turner 2023-03-03 17:25:29 -06:00
parent c6e82bca77
commit c2105e3199
No known key found for this signature in database
GPG key ID: 3FB5CF5C97A37B30

View file

@ -15,7 +15,6 @@ import (
featurebase "github.com/featurebasedb/featurebase/v3"
"github.com/featurebasedb/featurebase/v3/cli/batch"
"github.com/featurebasedb/featurebase/v3/cli/fbcloud"
"github.com/featurebasedb/featurebase/v3/cli/kafka"
"github.com/featurebasedb/featurebase/v3/errors"
"github.com/featurebasedb/featurebase/v3/logger"
)
@ -88,10 +87,6 @@ type Command struct {
// `-c` flag in the command line.
nonInteractiveMode bool
// kafkaRunner will be non-nil if the CLI has been configured to consume
// from kafka. In that case, Command will run in non-interactive mode.
kafkaRunner *kafka.Runner
// quit gets closed when Run should stop listening for input.
quit chan struct{}
}