mirror of
https://github.com/mainnika/mongox-go-driver.git
synced 2026-07-03 17:22:33 +00:00
Use hexed objectID as the name for ephemeral db name
This commit is contained in:
@@ -2,9 +2,8 @@ package database
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"math/rand"
|
|
||||||
"strconv"
|
|
||||||
|
|
||||||
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
||||||
"go.mongodb.org/mongo-driver/mongo"
|
"go.mongodb.org/mongo-driver/mongo"
|
||||||
"go.mongodb.org/mongo-driver/mongo/options"
|
"go.mongodb.org/mongo-driver/mongo/options"
|
||||||
|
|
||||||
@@ -20,7 +19,7 @@ type EphemeralDatabase struct {
|
|||||||
// NewEphemeral creates new mongo connection
|
// NewEphemeral creates new mongo connection
|
||||||
func NewEphemeral(URI string) (db *EphemeralDatabase, err error) {
|
func NewEphemeral(URI string) (db *EphemeralDatabase, err error) {
|
||||||
|
|
||||||
name := strconv.Itoa(rand.Int())
|
name := primitive.NewObjectID().Hex()
|
||||||
opts := options.Client().ApplyURI(URI)
|
opts := options.Client().ApplyURI(URI)
|
||||||
client, err := mongo.Connect(context.Background(), opts)
|
client, err := mongo.Connect(context.Background(), opts)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user