@lazedo
you can see that we sending expires=1 in our NSQ message and in nsq_pua.c
struct json_object *ExpiresObj = nsq_json_get_object(json_obj, BLF_JSON_EXPIRES);
if (ExpiresObj != NULL) {
expires = json_object_get_int(ExpiresObj);
if (expires > 0)
expires += (int)time(NULL);
}
you can see expires will be set to time + 1
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.