mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-11 15:21:02 +00:00
fix lint
This commit is contained in:
parent
a189477ba3
commit
bdfdeb1291
2 changed files with 3 additions and 4 deletions
|
|
@ -30,7 +30,9 @@ func TestExecutor_TranslateGroupByCall(t *testing.T) {
|
|||
cluster := newCluster()
|
||||
cluster.holder = holder
|
||||
cluster.Node = &Node{ID: "node1", URI: NewTestURIFromHostPort("node1", 0)}
|
||||
cluster.addNode(cluster.Node)
|
||||
if err := cluster.addNode(cluster.Node); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
e := &executor{
|
||||
Holder: holder,
|
||||
|
|
|
|||
|
|
@ -81,9 +81,6 @@ type Holder struct {
|
|||
|
||||
snapshotQueue snapshotQueue
|
||||
|
||||
// Manages replication from the primary node.
|
||||
primaryTranslateNode *Node
|
||||
|
||||
// Instantiates new translation stores
|
||||
OpenTranslateStore OpenTranslateStoreFunc
|
||||
OpenTranslateReader OpenTranslateReaderFunc
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue