From: Nathan Cutler Date: Sun, 26 Mar 2017 16:47:08 +0000 (+0200) Subject: tools: ceph-release-notes: use msg prefix instead of msgr X-Git-Tag: v12.0.2~226^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f1c65ce35900e62af67bdb686880998cfafd1ca1;p=ceph.git tools: ceph-release-notes: use msg prefix instead of msgr msgr is easy to confuse with "mgr". msg is more widely used and in this context it's not likely that anyone will take it to mean "monosodium glutamate". Signed-off-by: Nathan Cutler --- diff --git a/src/script/ceph-release-notes b/src/script/ceph-release-notes index 11667eacaf8b..63b84091a6d5 100755 --- a/src/script/ceph-release-notes +++ b/src/script/ceph-release-notes @@ -43,7 +43,7 @@ merge_re = re.compile("Merge pull request #(\d+).*") # prefixes is the list of commit description prefixes we recognize prefixes = [ 'bluestore', 'build/ops', 'cephfs', 'cephx', 'cli', 'cmake', 'common', 'core', 'crush', 'doc', 'fs', 'librados', 'librbd', - 'log', 'mds', 'mgr', 'mon', 'msgr', 'objecter', 'osd', 'rbd', + 'log', 'mds', 'mgr', 'mon', 'msg', 'objecter', 'osd', 'rbd', 'pybind', 'rgw', 'tests', 'tools' ] signed_off_re = re.compile("Signed-off-by: (.+) <") tracker_re = re.compile("http://tracker.ceph.com/issues/(\d+)")