Renat

Results 29 comments of Renat

Is there any workaround? I can't use `grpc_cli` tool to test my service because i'm getting similar errors to what @nzoschke is getting. > I0719 17:32:45.627790000 140735610065792 proto_reflection_descriptor_database.cc:84] NOT_FOUND from...

Sounds interesting! As you mentioned this should be implemented separately from the existing API as the wildcard does not seem to be a valid input there.

I assume you refer to this `time.Time` struct: https://cs.opensource.google/go/go/+/master:src/time/time.go;l=129;drc=f78efc0178d51c02beff8a8203910dc0a9c6e953 All of the fields in this struct are private. Copying private fields is not supported at this moment.

I'll work on a possible solution that would solve this issue in general, not just for `time.Time` structs.

Please, take a look at PR https://github.com/mennanov/fieldmask-utils/pull/28 Will it work for you?

I'm having the same issue. Any workarounds?

Could you please point me to the example on how to setup a TCP connection between 2 nodes both behind NAT? Something like node1_code.go, node2_code.go, external_server_code.go Thanks!

I wrote a similar test that passes: ``` func TestTitleBug(t *testing.T) { mask := &fieldmaskpb.FieldMask{Paths: []string{"title"}} mask.Normalize() task := &testproto.Task{ Title: "test", } require.True(t, mask.IsValid(task)) protoMask, err := fieldmask_utils.MaskFromProtoFieldMask(mask, func(s...