Return nil instead of panic in unimplemented streams functions
All checks were successful
the build was successful
All checks were successful
the build was successful
This commit is contained in:
parent
691012307b
commit
de23038cf9
|
@ -325,9 +325,11 @@ func (timeline *redisStreamTimeline) Count() (int, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (timeline *redisStreamTimeline) MarkRead(uids []string) error {
|
func (timeline *redisStreamTimeline) MarkRead(uids []string) error {
|
||||||
panic("implement me")
|
// panic("implement me")
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (timeline *redisStreamTimeline) MarkUnread(uids []string) error {
|
func (timeline *redisStreamTimeline) MarkUnread(uids []string) error {
|
||||||
panic("implement me")
|
// panic("implement me")
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user