Skip to content

Commit c92133e

Browse files
Chief-Rishabravisuhag
authored andcommittedAug 23, 2023
fix: emit unpopulated fields for asset.data
1 parent 3400a59 commit c92133e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1623
-770
lines changed
 

‎agent/agent_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import (
1717
"github.com/stretchr/testify/assert"
1818
"github.com/stretchr/testify/mock"
1919
"github.com/stretchr/testify/require"
20+
"google.golang.org/protobuf/types/known/structpb"
2021
"google.golang.org/protobuf/types/known/timestamppb"
2122

2223
v1beta2 "github.com/raystack/meteor/models/raystack/assets/v1beta2"
@@ -841,6 +842,7 @@ func TestAgentRun(t *testing.T) {
841842
Data: utils.BuildAny(t, &v1beta2.Application{
842843
Id: "test-id",
843844
Version: "c23sdf6",
845+
Attributes: &structpb.Struct{},
844846
CreateTime: ts(t, "2006-01-02T15:04:05Z"),
845847
UpdateTime: ts(t, "2006-01-02T15:04:05Z"),
846848
}),

‎models/util.go

+4-5
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ func NewURN(service, scope, kind, id string) string {
1515
}
1616

1717
func ToJSON(asset *assetsv1beta2.Asset) ([]byte, error) {
18-
marshaler := &protojson.MarshalOptions{
19-
UseProtoNames: true,
20-
}
21-
22-
return marshaler.Marshal(asset)
18+
return protojson.MarshalOptions{
19+
UseProtoNames: true,
20+
EmitUnpopulated: true,
21+
}.Marshal(asset)
2322
}

0 commit comments

Comments
 (0)
Please sign in to comment.