This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(persistence): clearing scheduled jobs should remove them from redis too (closes #8)

+1
+1
scheduler.go
··· 116 116 if job.ChurrosObjectId == objectId && filter(job) { 117 117 ll.Log("Unscheduling", "yellow", "%s | %s", job.Id, job.String()) 118 118 job.Unschedule() 119 + redisClient.Del(context.Background(), fmt.Sprintf("notella:message:%s", job.Id)) 119 120 } 120 121 } 121 122 }