Skip to content

Commit

Permalink
fix(idleTimeout): incorrect variable name for idleTimeout in frame
Browse files Browse the repository at this point in the history
closes 229
  • Loading branch information
mbroadst committed Apr 1, 2016
1 parent 00dc571 commit 8cb7e74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/frames.js
Expand Up @@ -166,7 +166,7 @@ frames.OpenFrame = defineFrame(FrameType.AMQP, {
{ name: 'hostname', type: 'string' },
{ name: 'maxFrameSize', type: 'uint', default: constants.defaultMaxFrameSize },
{ name: 'channelMax', type: 'ushort', default: constants.defaultChannelMax },
{ name: 'idleTimeOut', type: 'milliseconds', default: constants.defaultIdleTimeout },
{ name: 'idleTimeout', type: 'milliseconds', default: constants.defaultIdleTimeout },
{ name: 'outgoingLocales', type: 'ietf-language-tag',
multiple: true, default: constants.defaultOutgoingLocales },
{ name: 'incomingLocales', type: 'ietf-language-tag',
Expand Down

0 comments on commit 8cb7e74

Please sign in to comment.