Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split object_space_dump into smaller messages #77

Merged
merged 15 commits into from
Jan 24, 2015
Prev Previous commit
Next Next commit
Bump the protcol version
This version of protocol is not compatible with
previous version.
gnufied committed Jan 23, 2015

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit c1a3f143c81ea9564ed9021c6a59749e02879e7c
2 changes: 1 addition & 1 deletion ext/rbkit_event_packer.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef RBKIT_MESSAGE_PACKER
#define RBKIT_MESSAGE_PACKER
#define RBKIT_PROTOCOL_VERSION "1.0"
#define RBKIT_PROTOCOL_VERSION "1.1"
#include "msgpack.h"
#include "rbkit_event.h"

2 changes: 1 addition & 1 deletion spec/status_spec.rb
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@
describe 'rbkit_protocol_version field' do
let(:field) { Rbkit.status[:rbkit_protocol_version] }
it 'should be equal to Rbkit version' do
expect(Rbkit::PROTOCOL_VERSION).to eql "1.0"
expect(Rbkit::PROTOCOL_VERSION).to eql "1.1"
expect(field).to eql Rbkit::PROTOCOL_VERSION
end
end