phalcon/cphalcon · error · Phalcon\Queue\Exceptions\TimeToLiveNotSupportedException
The transport does not support a message time to live
Error message
The transport does not support a message time to live
What it means
Error "The transport does not support a message time to live" thrown in phalcon/cphalcon.
Source
Thrown at phalcon/Queue/Adapter/AbstractProducer.zep:76
throw new DeliveryDelayNotSupportedException();
}
return this;
}
public function setPriority(var priority = null) -> <ProducerInterface>
{
if unlikely priority !== null {
throw new PriorityNotSupportedException();
}
return this;
}
public function setTimeToLive(var timeToLive = null) -> <ProducerInterface>
{
if unlikely timeToLive !== null {
throw new TimeToLiveNotSupportedException();
}
return this;
}
}
View on GitHub (pinned to b7419de9cd)
When it happens
Trigger: Thrown at phalcon/Queue/Adapter/AbstractProducer.zep:76 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of phalcon/cphalcon@b7419de9cd (2026-08-21).
Data as JSON: /api/errors/a6f891acd0c6bb0f.
Report an issue: GitHub.