diff --git a/state/redis.c b/state/redis.c index 9c4b81f03..d10b06b75 100644 --- a/state/redis.c +++ b/state/redis.c @@ -165,7 +165,7 @@ void task_queue_submit_task(db_conn *db, task_iid task_iid, task_spec *task) { UT_string *command; utstring_new(command); sha1_to_hex(&task_iid.id[0], &hex[0]); - utstring_printf(command, "HMSET queue:%s", &hex[0]); + utstring_printf(command, "HMSET queue:%s ", &hex[0]); print_task(task, command); redisAsyncCommand(db->context, NULL, NULL, utstring_body(command)); if (db->context->err) {