-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Https stream #461
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
Merged
Merged
Https stream #461
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
ce54830
add SSL support for streaming
BRONSOLO 5834a12
add tests for streaming over https
BRONSOLO a4616e3
version update
BRONSOLO 01f1c46
update changelog
BRONSOLO f46ef5f
version fix
BRONSOLO 4a2c82e
fix version 1.1.0 ---> 1.10.0
BRONSOLO bf10b6c
fix missing newline
BRONSOLO e60d30c
use six for urllib for compat with Python 3
BRONSOLO d4b60cd
remove unused import
BRONSOLO ff7a57d
Run `make pull_chunked` and `make sync_chunked`.
theengineear f1ba31b
update python version for tests
BRONSOLO af21115
Merge branch 'https_stream' of https://github.com/plotly/plotly.py inβ¦
BRONSOLO c71d4ce
update python to latest
BRONSOLO 2d08352
use 2.7.10 (2.7.11 not available in circle yet)
BRONSOLO d9989ef
increase timeout to 1hr
BRONSOLO f8c2f46
fix indentation
BRONSOLO 897565e
go back to using 2.8 (2.9 no longer required)
BRONSOLO e873d67
remove timeout
BRONSOLO f0e8a5e
fix circle template
BRONSOLO 66db06d
Run `make pull_chunked` and `make sync_chunked`.
theengineear 9f7d44c
Merge branch 'https_stream' of https://github.com/plotly/python-api iβ¦
theengineear 3c7a623
Use `TestCase` in `test_stream.py` tests.
theengineear 74c2bb0
Merge pull request #462 from plotly/update-streaming-tests
theengineear 0990b1d
space fix
BRONSOLO 811b5d7
update version + fix changeling
BRONSOLO 1eeec5a
Merge branch 'https_stream' of https://github.com/plotly/plotly.py inβ¦
BRONSOLO File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice. I think we should default to
443
instead of80
from now on. so likeport = self.HTTP_PORT if 'http:' in streaming_url else self.HTTPS_PORT
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually, I say we roll this out as is and then change the default behaviour once we know streaming over
https
is performing as expected (beyond my local tests).