Use hexed objectID as the name for ephemeral db name

This commit is contained in:
2022-01-16 22:56:44 +01:00
parent 82e1de7216
commit eab00f99b5
+2 -3
View File
@@ -2,9 +2,8 @@ package database
import (
"context"
"math/rand"
"strconv"
"go.mongodb.org/mongo-driver/bson/primitive"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
@@ -20,7 +19,7 @@ type EphemeralDatabase struct {
// NewEphemeral creates new mongo connection
func NewEphemeral(URI string) (db *EphemeralDatabase, err error) {
name := strconv.Itoa(rand.Int())
name := primitive.NewObjectID().Hex()
opts := options.Client().ApplyURI(URI)
client, err := mongo.Connect(context.Background(), opts)