From 826f1ecff43c22fda325a672dac39441e11d53ca Mon Sep 17 00:00:00 2001 From: Ken Hibino Date: Sun, 3 May 2020 16:47:55 -0700 Subject: [PATCH] Update docs --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a02b17..4b659fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- [Fixed cancelfunc leak](https://github.com/hibiken/asynq/pull/145) + ## [0.8.1] - 2020-04-27 ### Added diff --git a/README.md b/README.md index 8b557ea..1a51298 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,8 @@ A system can consist of multiple worker servers and brokers, giving way to high - [Strict priority queues](https://github.com/hibiken/asynq/wiki/Priority-Queues#strict-priority-queues) - Low latency to add a task since writes are fast in Redis - De-duplication of tasks using [unique option](https://github.com/hibiken/asynq/wiki/Unique-Tasks) -- Allow timeout and deadline per task -- Flexible handler interface with support for middlewares +- Allow [timeout and deadline per task](https://github.com/hibiken/asynq/wiki/Task-Timeout-and-Cancelation) +- [Flexible handler interface with support for middlewares](https://github.com/hibiken/asynq/wiki/Handler-Deep-Dive) - [Support Redis Sentinels](https://github.com/hibiken/asynq/wiki/Automatic-Failover) for HA - [CLI](#command-line-tool) to inspect and remote-control queues and tasks