ErrSessionNotFound valid API key is required (403).
(ts time.Time)
| 1328 | |
| 1329 | // ErrSessionNotFound valid API key is required (403). |
| 1330 | func ErrSessionNotFound(ts time.Time) *ServerComMessage { |
| 1331 | return &ServerComMessage{ |
| 1332 | Ctrl: &MsgServerCtrl{ |
| 1333 | Code: http.StatusForbidden, |
| 1334 | Text: "invalid or expired session", |
| 1335 | Timestamp: ts, |
| 1336 | }, |
| 1337 | } |
| 1338 | } |
| 1339 | |
| 1340 | // ErrTopicNotFound topic is not found |
| 1341 | // with explicit server and incoming request timestamps (404). |
no outgoing calls
no test coverage detected
searching dependent graphs…