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 8625e54 commit 0b45924Copy full SHA for 0b45924
internal/errors/operation.go
@@ -74,7 +74,7 @@ func (e *OpError) Error() string {
74
return e.Reason.String()
75
}
76
var buf bytes.Buffer
77
- buf.WriteString("ydb: operation error: ")
+ buf.WriteString("operation error: ")
78
buf.WriteString(e.Reason.String())
79
if len(e.issues) > 0 {
80
buf.WriteByte(':')
internal/errors/transport.go
@@ -94,7 +94,7 @@ func NewTransportError(opts ...teOpt) error {
94
95
96
func (t *TransportError) Error() string {
97
- s := "ydb: transport error: " + t.Reason.String()
+ s := "transport error: " + t.Reason.String()
98
if t.message != "" {
99
s += ": " + t.message
100
0 commit comments