Open rtadepalli opened 1 year ago
The FDB library version was getting pinned in go.work which was an older version, so the Close() function was not accessible. This PR updates the FDB library versions using go get <fdb library>@latest and runs go work sync.
go.work
Close()
go get <fdb library>@latest
go work sync
cc @richardartoul
The FDB library version was getting pinned in
go.work
which was an older version, so theClose()
function was not accessible. This PR updates the FDB library versions usinggo get <fdb library>@latest
and runsgo work sync
.cc @richardartoul