storage rework

This commit is contained in:
royalcat 2024-06-15 01:14:44 +03:00
parent 06153d61c9
commit e9df8925d1
49 changed files with 1825 additions and 1303 deletions
pkg/go-nfs

View file

@ -14,6 +14,7 @@ import (
"github.com/willscott/go-nfs-client/nfs/rpc"
"github.com/willscott/go-nfs-client/nfs/xdr"
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/codes"
)
var (
@ -144,6 +145,8 @@ func (c *conn) handle(ctx context.Context, w *response) error {
return err
}
}
span.SetStatus(codes.Ok, "")
return nil
}