Files
opensearch-pyd/test_opensearchpy/test_client/test_remote_store.py
T

16 lines
557 B
Python
Raw Normal View History

2023-10-26 07:59:07 -07:00
# SPDX-License-Identifier: Apache-2.0
#
# The OpenSearch Contributors require contributions made to
# this file be licensed under the Apache-2.0 license or a
# compatible open source license.
#
# Modifications Copyright OpenSearch Contributors. See
# GitHub history for details.
from test_opensearchpy.test_cases import OpenSearchTestCase
class TestRemoteStore(OpenSearchTestCase):
2023-11-06 13:08:19 -05:00
def test_remote_store_restore(self) -> None:
2023-10-26 07:59:07 -07:00
self.client.remote_store.restore(body=["index-1"])
self.assert_url_called("POST", "/_remotestore/_restore")