Merge pull request #10 from TaDaweb/master

Fix problem of ms vs seconds for heartbeat
This commit is contained in:
Matt Broadstone 2015-02-03 15:20:11 -05:00
commit cac9d94491
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);