Skip to content

Commit

Permalink
feat(storage): enable TLS backend tests
Browse files Browse the repository at this point in the history
Signed-off-by: Boris Glimcher <[email protected]>
  • Loading branch information
glimchb committed Sep 28, 2023
1 parent d007614 commit bd631f2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions storage/backend.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ func DoBackend(ctx context.Context, conn grpc.ClientConnInterface) error {
if err != nil {
return err
}
err = executeNvmePath(ctx, nvme, true)
if err != nil {
return err
}

Check warning on line 40 in storage/backend.go

View check run for this annotation

Codecov / codecov/patch

storage/backend.go#L37-L40

Added lines #L37 - L40 were not covered by tests
err = executeNullVolume(ctx, null)
if err != nil {
return err
Expand Down

0 comments on commit bd631f2

Please sign in to comment.