-
Notifications
You must be signed in to change notification settings - Fork 93
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
Fix HTTP_URI typo in http.py #148
Conversation
Codecov Report
@@ Coverage Diff @@
## master #148 +/- ##
=======================================
Coverage 84.05% 84.05%
=======================================
Files 44 44
Lines 4133 4133
=======================================
Hits 3474 3474
Misses 659 659
Continue to review full report at Codecov.
|
@@ -60,7 +60,7 @@ | |||
from thriftpy2.transport import TBufferedTransportFactory | |||
|
|||
|
|||
HTTP_URI = '{scheme}://{host}:{port}{path}' | |||
HTTP_URI = '{scheme}://{host}:{port}/{path}' |
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.
This change just broke things for me.
Really sorry for the break, so should we add a if statement and and the |
Your call, but since the standard in |
Fix the path issue caused by #148
close #140