[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 3/8] python/aqmp: Remove scary message
From: |
John Snow |
Subject: |
[PATCH v5 3/8] python/aqmp: Remove scary message |
Date: |
Tue, 26 Oct 2021 13:56:07 -0400 |
The scary message interferes with the iotests output. Coincidentally, if
iotests works by removing this, then it's good evidence that we don't
really need to scare people away from using it.
Signed-off-by: John Snow <jsnow@redhat.com>
Acked-by: Hanna Reitz <hreitz@redhat.com>
---
python/qemu/aqmp/__init__.py | 12 ------------
1 file changed, 12 deletions(-)
diff --git a/python/qemu/aqmp/__init__.py b/python/qemu/aqmp/__init__.py
index d1b0e4dc3d3..880d5b6fa7f 100644
--- a/python/qemu/aqmp/__init__.py
+++ b/python/qemu/aqmp/__init__.py
@@ -22,7 +22,6 @@
# the COPYING file in the top-level directory.
import logging
-import warnings
from .error import AQMPError
from .events import EventListener
@@ -31,17 +30,6 @@
from .qmp_client import ExecInterruptedError, ExecuteError, QMPClient
-_WMSG = """
-
-The Asynchronous QMP library is currently in development and its API
-should be considered highly fluid and subject to change. It should
-not be used by any other scripts checked into the QEMU tree.
-
-Proceed with caution!
-"""
-
-warnings.warn(_WMSG, FutureWarning)
-
# Suppress logging unless an application engages it.
logging.getLogger('qemu.aqmp').addHandler(logging.NullHandler())
--
2.31.1
- [PATCH v5 2/8] python/machine: Handle QMP errors on close more meticulously, (continued)
- [PATCH v5 6/8] iotests/300: avoid abnormal shutdown race condition, John Snow, 2021/10/26
- [PATCH v5 7/8] python/aqmp: Create sync QMP wrapper for iotests, John Snow, 2021/10/26
- [PATCH v5 4/8] iotests: Accommodate async QMP Exception classes, John Snow, 2021/10/26
- [PATCH v5 8/8] python, iotests: replace qmp with aqmp, John Snow, 2021/10/26
- [PATCH v5 3/8] python/aqmp: Remove scary message,
John Snow <=
- [PATCH v5 5/8] iotests: Conditionally silence certain AQMP errors, John Snow, 2021/10/26
- Re: [PATCH v5 0/8] Switch iotests to using Async QMP, Kevin Wolf, 2021/10/28