big-microphone-99982
07/10/2025, 1:40 AMtall-airline-16756
07/10/2025, 1:40 AMtall-airline-16756
07/10/2025, 1:41 AMofferId
does not match the latestOfferId
, LiveKit will log this warning and ignore the outdated answer. This helps prevent negotiation issues caused by out-of-sequence signaling messages.
Example (from code):
if (sd.type === 'answer' && this.latestOfferId > 0 && offerId > 0 && offerId !== this.latestOfferId) {
this.log.warn('ignoring answer for old offer'...)
return false;
}
At this time, I do not have information on the specific message "negotiation disconnected" in the available documentation.
Sources: src/api/SignalClient.ts