Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/asyncio_client.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Asyncio HazelcastClient API (BETA) Documentation
Asyncio HazelcastClient API Documentation
================================================

.. automodule:: hazelcast.asyncio
1 change: 0 additions & 1 deletion docs/getting_help.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ You can use the following channels for your questions and
development/usage issues:

- `Github Repository <https://github.com/hazelcast/hazelcast-python-client/issues/new>`__
- `Slack <https://slack.hazelcast.com>`__
2 changes: 1 addition & 1 deletion docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Hazelcast Python client. It outlines the requirements, installation and
configuration of the client, setting up a cluster, and provides a simple
application that uses a distributed map in Python client.

.. Note:: See :ref:`getting_started_asyncio:getting started - asyncio api (beta)` for getting started with the the asyncio API.
.. Note:: See :ref:`getting_started_asyncio:getting started - asyncio api` for getting started with the the asyncio API.


Requirements
Expand Down
8 changes: 2 additions & 6 deletions docs/getting_started_asyncio.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
Getting Started - Asyncio API (BETA)
====================================

.. warning::

Hazelcast's asyncio API is BETA. Do not use it in production.
Getting Started - Asyncio API
=============================

This chapter provides information on how to get started with the Hazelcast Python client using its asyncio API.
It provides the requirements, installation instructions, and a simple application that uses a distributed map in a Python client.
Expand Down
3 changes: 0 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ Hazelcast Python Client
.. image:: https://img.shields.io/static/v1?label=Github&message=Hazelcast%20Python%20client&style=flat&logo=github
:target: https://github.com/hazelcast/hazelcast-python-client
:alt: Github Repository
.. image:: https://img.shields.io/badge/slack-chat-green.svg
:target: https://slack.hazelcast.com
:alt: Join the community on Slack
.. image:: https://img.shields.io/pypi/l/hazelcast-python-client
:target: https://github.com/hazelcast/hazelcast-python-client/blob/master/LICENSE.txt
:alt: License
Expand Down
5 changes: 0 additions & 5 deletions hazelcast/asyncio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
import warnings

warnings.warn("Asyncio API for Hazelcast Python Client is BETA. DO NOT use it in production.")
del warnings

__all__ = [
"EntryEventCallable",
"HazelcastClient",
Expand Down
4 changes: 0 additions & 4 deletions hazelcast/internal/asyncio_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,6 @@ class HazelcastClient:
Warning:
Asyncio client is not thread-safe, do not access it from other threads.

Warning:
Asyncio client is BETA.
Its public API may change until General Availability release.

See the :class:`hazelcast.config.Config` documentation for the possible
configuration options.
"""
Expand Down
5 changes: 0 additions & 5 deletions hazelcast/internal/asyncio_proxy/map.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,6 @@ class Map(Proxy, typing.Generic[KeyType, ValueType]):

Warning:
Asyncio client map proxy is not thread-safe, do not access it from other threads.

Warning:
Asyncio client is BETA.
Its public API may change until General Availability release.

"""

def __init__(self, service_name, name, context):
Expand Down
Loading