diff --git a/internal/hostagent/server.go b/internal/hostagent/server.go index ab016f8..7cd78f4 100644 --- a/internal/hostagent/server.go +++ b/internal/hostagent/server.go @@ -129,7 +129,6 @@ func (s *Server) CreateSnapshot( return nil, connect.NewError(connect.CodeInternal, fmt.Errorf("create snapshot: %w", err)) } return connect.NewResponse(&pb.CreateSnapshotResponse{ - Name: msg.Name, SizeBytes: sizeBytes, }), nil } diff --git a/internal/id/id_test.go b/internal/id/id_test.go index 6fb2394..2000e9c 100644 --- a/internal/id/id_test.go +++ b/internal/id/id_test.go @@ -113,6 +113,6 @@ func BenchmarkParseSandboxID(b *testing.B) { s := FormatSandboxID(id) b.ResetTimer() for i := 0; i < b.N; i++ { - ParseSandboxID(s) + _, _ = ParseSandboxID(s) } }