Fix problem of ms vs seconds for heartbeat
This commit is contained in:
parent
31d8affc84
commit
7cd07f4983
|
|
@ -504,7 +504,7 @@ void QAmqpClientPrivate::tuneOk()
|
|||
|
||||
stream << qint16(channelMax);
|
||||
stream << qint32(frameMax);
|
||||
stream << qint16(heartbeatDelay / 1000);
|
||||
stream << qint16(heartbeatDelay);
|
||||
|
||||
frame.setArguments(arguments);
|
||||
sendFrame(frame);
|
||||
|
|
|
|||
Loading…
Reference in New Issue