Skip to content

Commit a4b6940

Browse files
ramonhprRamon Ribeiro
authored and
Ramon Ribeiro
committed
Fix closing brackets on tsbs_mongo_load
1 parent e9a575f commit a4b6940

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

cmd/tsbs_load_mongo/creator.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ package main
33
import (
44
"context"
55
"fmt"
6+
"log"
7+
"strings"
8+
69
"go.mongodb.org/mongo-driver/bson"
710
"go.mongodb.org/mongo-driver/mongo"
811
"go.mongodb.org/mongo-driver/mongo/options"
9-
"go.mongodb.org/mongo-driver/mongo/readpref"
10-
"log"
11-
"strings"
1212
)
1313

1414
type dbCreator struct {
@@ -25,7 +25,6 @@ func (d *dbCreator) Init() {
2525
if err != nil {
2626
log.Println("Can't establish connection with", daemonURL)
2727
log.Fatal(err)
28-
}
2928
}
3029
}
3130

0 commit comments

Comments
 (0)