]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
unittest-seastar-socket: debug to error on unexpected return from dispatch_rw_bounded
authorSamuel Just <sjust@redhat.com>
Fri, 16 Feb 2024 00:04:05 +0000 (00:04 +0000)
committerSamuel Just <sjust@redhat.com>
Fri, 16 Feb 2024 00:04:12 +0000 (00:04 +0000)
Related: https://tracker.ceph.com/issues/64457
Signed-off-by: Samuel Just <sjust@redhat.com>
src/test/crimson/test_socket.cc

index 2b61196ead8dfd6ef364d97ea399af88f147c55a..9a025f3c6767cef6b39f40d534cc95342ca073e8 100644 (file)
@@ -449,7 +449,7 @@ future<> test_unexpected_down(bool is_fixed_cpu) {
     [](auto cs) {
       return Connection::dispatch_rw_bounded(cs, 128, true
         ).handle_exception_type([](const std::system_error& e) {
-        logger().debug("test_unexpected_down(): client get error {}", e);
+        logger().error("test_unexpected_down(): client get error {}", e);
         ceph_assert(e.code() == error::read_eof);
       });
     },