We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a989b40 commit 4d566f2Copy full SHA for 4d566f2
internal/grpcwrapper/rawtopic/describe_topic.go
@@ -43,7 +43,7 @@ type DescribeTopicResult struct {
43
44
func (res *DescribeTopicResult) FromProto(protoResponse *Ydb_Topic.DescribeTopicResponse) error {
45
if err := res.Operation.FromProtoWithStatusCheck(protoResponse.Operation); err != nil {
46
- return nil
+ return err
47
}
48
49
protoResult := &Ydb_Topic.DescribeTopicResult{}
internal/grpcwrapper/rawydb/issues.go
@@ -17,7 +17,7 @@ func (issuesPointer *Issues) FromProto(p []*Ydb_Issue.IssueMessage) error {
17
issues := *issuesPointer
18
for i := range issues {
19
if err := issues[i].FromProto(p[i]); err != nil {
20
21
22
23
return nil
0 commit comments