Skip to content

Commit 5409307

Browse files
committed
WIP
1 parent 8ad2eb9 commit 5409307

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

x/mongo/driver/operation/hello.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ package operation
99
import (
1010
"context"
1111
"errors"
12+
"fmt"
1213
"os"
1314
"runtime"
1415
"strconv"
@@ -609,6 +610,7 @@ func (h *Hello) Execute(ctx context.Context) error {
609610
return errors.New("a Hello must have a Deployment set before Execute can be called")
610611
}
611612

613+
fmt.Println("Executing Hello operation...")
612614
return h.createOperation().Execute(ctx)
613615
}
614616

@@ -627,7 +629,7 @@ func isLegacyHandshake(srvAPI *driver.ServerAPIOptions, loadbalanced bool) bool
627629

628630
func (h *Hello) createOperation() driver.Operation {
629631
op := driver.Operation{
630-
// Clock: h.clock,
632+
Clock: h.clock,
631633
CommandFn: h.command,
632634
Database: "admin",
633635
Deployment: h.d,

0 commit comments

Comments
 (0)