From: Nathan Cutler Date: Sun, 26 Mar 2017 16:55:03 +0000 (+0200) Subject: tools: ceph-release-notes: add rbd-mirror and rbd-nbd prefixes X-Git-Tag: v12.0.2~226^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a3f3bf0d2cc4ea36435400e8fd420f8727ea28d9;p=ceph.git tools: ceph-release-notes: add rbd-mirror and rbd-nbd prefixes Signed-off-by: Nathan Cutler --- diff --git a/src/script/ceph-release-notes b/src/script/ceph-release-notes index 63b84091a6d5..12e76ecc50cc 100755 --- a/src/script/ceph-release-notes +++ b/src/script/ceph-release-notes @@ -43,8 +43,8 @@ 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', 'msg', 'objecter', 'osd', 'rbd', - 'pybind', 'rgw', 'tests', 'tools' ] + 'log', 'mds', 'mgr', 'mon', 'msg', 'objecter', 'osd', 'pybind', + 'rbd', 'rbd-mirror', 'rbd-nbd', 'rgw', 'tests', 'tools' ] signed_off_re = re.compile("Signed-off-by: (.+) <") tracker_re = re.compile("http://tracker.ceph.com/issues/(\d+)") tracker_uri = "http://tracker.ceph.com/issues/{0}.json"