We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c46ef89 commit b5f5f2fCopy full SHA for b5f5f2f
packages/service-library/src/servicelib/rabbitmq/rpc_interfaces/webserver/projects.py
@@ -1,4 +1,5 @@
1
import logging
2
+import warnings
3
from typing import cast
4
5
from models_library.api_schemas_webserver import WEBSERVER_RPC_NAMESPACE
@@ -24,6 +25,14 @@
24
25
_logger = logging.getLogger(__name__)
26
27
28
+warnings.warn(
29
+ "The 'rpc_interfaces.webserver.projects' module is deprecated and will be removed in a future release. "
30
+ "Please use 'rpc_interfaces.webserver.v1' instead.",
31
+ DeprecationWarning,
32
+ stacklevel=2,
33
+)
34
+
35
36
@log_decorator(_logger, level=logging.DEBUG)
37
@validate_call(config={"arbitrary_types_allowed": True})
38
async def mark_project_as_job(
0 commit comments