From: Nathan Cutler Date: Mon, 15 Apr 2019 08:48:37 +0000 (+0200) Subject: cmake: revert librados_tp.so version from 3 to 2 X-Git-Tag: v14.2.1~16^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b74172a459b8ad7a8215fa1a08f7f262358b53f5;p=ceph.git cmake: revert librados_tp.so version from 3 to 2 Post-mortem analysis: librados.so and librados_tp.so are packaged together in the librados2 RPM. c680fb10f598267f15a37fdb7bc44529c37c9318 bumped the librados.so and librados_tp.so versions from 2 to 3. Later, 7bf6b5ee1208a359826c74ab033e6bbbfc65969f reverted the librados.so version from 3 to 2, but left the librados_tp.so version at 3. Fixes: http://tracker.ceph.com/issues/39291 Signed-off-by: Nathan Cutler (cherry picked from commit b555ba6e2b99400937264edbd3031fcf24fd9005) --- diff --git a/src/tracing/CMakeLists.txt b/src/tracing/CMakeLists.txt index 68a054961a7f4..d63399d589f8b 100644 --- a/src/tracing/CMakeLists.txt +++ b/src/tracing/CMakeLists.txt @@ -43,7 +43,7 @@ endfunction() set(osd_traces oprequest.tp osd.tp pg.tp) add_tracing_library(osd_tp "${osd_traces}" 1.0.0) -add_tracing_library(rados_tp librados.tp 3.0.0) +add_tracing_library(rados_tp librados.tp 2.0.0) add_tracing_library(os_tp objectstore.tp 1.0.0) add_tracing_library(rgw_op_tp rgw_op.tp 1.0.0) add_tracing_library(rgw_rados_tp rgw_rados.tp 1.0.0)