diff options
author | Dan Gudmundsson <[email protected]> | 2011-08-24 14:36:17 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2011-09-15 15:34:19 +0200 |
commit | 1b3cf4e529d935a0dbb352da1c3597237e7c4435 (patch) | |
tree | 0d434dd837dea593f792e11b7385c0bed12c477f /lib/mnesia/src/mnesia_monitor.erl | |
parent | 43647249896ca972844796cdd8e23d485749a7ed (diff) | |
download | otp-1b3cf4e529d935a0dbb352da1c3597237e7c4435.tar.gz otp-1b3cf4e529d935a0dbb352da1c3597237e7c4435.tar.bz2 otp-1b3cf4e529d935a0dbb352da1c3597237e7c4435.zip |
[mnesia] Update protocol version
And remove old protocol version hacks
Diffstat (limited to 'lib/mnesia/src/mnesia_monitor.erl')
-rw-r--r-- | lib/mnesia/src/mnesia_monitor.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/mnesia/src/mnesia_monitor.erl b/lib/mnesia/src/mnesia_monitor.erl index b6eda9ad3a..c06b04a5e1 100644 --- a/lib/mnesia/src/mnesia_monitor.erl +++ b/lib/mnesia/src/mnesia_monitor.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2010. All Rights Reserved. +%% Copyright Ericsson AB 1996-2011. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -80,9 +80,9 @@ going_down = [], tm_started = false, early_connects = [], connecting, mq = []}). --define(current_protocol_version, {7,6}). +-define(current_protocol_version, {8,0}). --define(previous_protocol_version, {7,5}). +-define(previous_protocol_version, {7,6}). start() -> gen_server:start_link({local, ?MODULE}, ?MODULE, |