8000 Retry requests for Python API by Kully · Pull Request #964 · plotly/plotly.py · GitHub
[go: up one dir, main page]

Skip to content

Retry requests for Python API #964

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 10 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
remove retrying from clientrespt
  • Loading branch information
Kully committed Mar 8, 2018
commit 3209e6ece096c46a5561e3a438a7f3bd015a6383
3 changes: 0 additions & 3 deletions plotly/api/v1/clientresp.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@
import warnings

from requests.compat import json as _json
from retrying import retry

from plotly import config, utils, version
from plotly.api.v1.utils import request


@retry(wait_random_min=100, wait_random_max=1000, wait_exponential_max=10000,
stop_max_delay=30000)
def clientresp(data, **kwargs):
"""
Deprecated endpoint, still used because it can parse data out of a plot.
Expand Down
0