You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ErrResponseUnparseable should be returned when channel response can't be parsed in expected format
96
105
varErrResponseUnparseableerror=&SendError{
97
106
msg: "response couldn't be parsed",
@@ -110,15 +119,6 @@ var ErrResponseUnexpected error = &SendError{
110
119
clogMsg: "Response doesn't match expected values.",
111
120
}
112
121
113
-
// ErrResponseContent is same as ErrResponseUnexpected without logging so better for channels where response check is user configured. We conside this message failed when the response content is unexpected
114
-
varErrResponseContenterror=&SendError{
115
-
msg: "response not expected values",
116
-
retryable: false,
117
-
loggable: false,
118
-
clogCode: "response_unexpected",
119
-
clogMsg: "Response doesn't match expected values.",
120
-
}
121
-
122
122
// ErrContactStopped should be returned when channel tells us explicitly that the contact has opted-out
0 commit comments