summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2014-05-23 09:28:32 +0200
committerantirez <antirez@gmail.com>2014-05-23 09:28:32 +0200
commit5697f4f85d6a1d02efd5f4a32dd5a5181a8df7f9 (patch)
tree8922230f3239fa3ef7e69103b2894460b7a777ae
parent90bbf1159bd4519a5646fa8ecb145d0e7ac6f9a7 (diff)
downloadredis-5697f4f85d6a1d02efd5f4a32dd5a5181a8df7f9.tar.gz
Document log format change in 3.0 Changelog.
-rw-r--r--00-RELEASENOTES8
1 files changed, 7 insertions, 1 deletions
diff --git a/00-RELEASENOTES b/00-RELEASENOTES
index 9a339f6b7..122beb54f 100644
--- a/00-RELEASENOTES
+++ b/00-RELEASENOTES
@@ -166,7 +166,13 @@ Migrating from 2.8 to 3.0
=========================
Redis 3.0 is mostly a strict subset of 2.8, you should not have any problem
-upgrading your application from 2.8 to 3.0.
+upgrading your application from 2.8 to 3.0. However this is a lost of small
+non-backward compatible changes introduced in the 3.0 release:
+
+* The log format was modified. The prefix of each line included the pid
+ in the following format [1234]. Now instead it is 1234:? Where
+ '?' is actually the role of the instance. M for master, S for slave, C
+ if this process is a saving child (for RDB/AOF), and X for Sentinel.
--------------------------------------------------------------------------------