Files
opensearch-pyd/utils/templates/overrides/tasks/get
T
Seth Michael Larson 9c39f37547 Release 7.7.0a1
2020-04-01 09:16:38 -05:00

14 lines
396 B
Plaintext

{% extends "base" %}
{% block request %}
if task_id in SKIP_IN_PATH:
warnings.warn(
"Calling client.tasks.get() without a task_id is deprecated "
"and will be removed in v8.0. Use client.tasks.list() instead.",
category=DeprecationWarning,
stacklevel=3,
)
{{ super()|trim }}
{% endblock %}