Fix problem of ms vs seconds for heartbeat

This commit is contained in:
Gauthier Brion 2015-02-03 18:00:26 +01:00
parent 31d8affc84
commit 7cd07f4983
1 changed files with 1 additions and 1 deletions

View File

@ -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);