[PYCBC-84] Implement multi-get Created: 09/Feb/13 Updated: 11/May/13 Resolved: 21/Feb/13 |
|
| Status: | Closed |
| Project: | Couchbase Python Client Library |
| Component/s: | library |
| Affects Version/s: | 0.8.0 |
| Fix Version/s: | 0.8.1 |
| Security Level: | Public |
| Type: | Improvement | Priority: | Major |
| Reporter: | Mike Wiederhold | Assignee: | Mark Nunberg |
| Resolution: | Duplicate | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Description |
|
http://www.couchbase.com/forums/thread/how-retrive-multiple-documents-python
Please follow up with the user who posted this in the forums upon completion. |
| Comments |
| Comment by Mike Wiederhold [ 21/Feb/13 ] |
|
Duplicate of |
[PYCBC-72] requests.get should always use auth= Created: 19/Nov/12 Updated: 02/May/13 Resolved: 02/May/13 |
|
| Status: | Closed |
| Project: | Couchbase Python Client Library |
| Component/s: | library |
| Affects Version/s: | 0.8.0 |
| Fix Version/s: | 0.8.1 |
| Security Level: | Public |
| Type: | Bug | Priority: | Critical |
| Reporter: | Tommie McAfee | Assignee: | Mark Nunberg |
| Resolution: | Incomplete | Votes: | 0 |
| Labels: | system-test | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Description |
|
Multi-bucket usecases fail when authentication to bucket is invalid.
Here auth is set correctly: https://github.com/couchbase/couchbase-python-client/blob/master/couchbase/rest_client.py#L293 but missing here: https://github.com/couchbase/couchbase-python-client/blob/master/couchbase/couchbaseclient.py#L349 https://github.com/couchbase/couchbase-python-client/blob/master/couchbase/rest_client.py#L177 |
| Comments |
| Comment by Mark Nunberg [ 02/May/13 ] |
| Using libcouchbase for this now |
[PYCBC-83] Python client fails to encode view parameters Created: 09/Feb/13 Updated: 26/Apr/13 |
|
| Status: | Open |
| Project: | Couchbase Python Client Library |
| Component/s: | library |
| Affects Version/s: | 0.8.0 |
| Fix Version/s: | 0.8.1 |
| Security Level: | Public |
| Type: | Bug | Priority: | Major |
| Reporter: | Mike Wiederhold | Assignee: | Mark Nunberg |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Description |
|
http://www.couchbase.com/forums/thread/reporting-issue-python-client-bucket-viewoptions-needs-encode-options
During querying a view, if the option is not encoded, it generates an error. Example: bucket.view("_design/beer/_view/by_name", limit=10, key="##") The "##" characters generates: "invalid UTF-8 JSON: {{error,insufficient_data},"[\"NONE"}" The Couchbase Python client code should encode all the params in the client.py: view() method. Please follow up with the user who posted the issue on the forums once this issue is resolved. |