[PYCBC-79] Create bucket function does not allow user to set the bucket type Created: 26/Jan/13 Updated: 26/Jan/13 |
|
| Status: | Open |
| Project: | Couchbase Python Client Library |
| Component/s: | library |
| Affects Version/s: | 0.8.0 |
| Fix Version/s: | None |
| Security Level: | Public |
| Type: | Bug | Priority: | Major |
| Reporter: | Tug Grall | Assignee: | Tug Grall |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Remaining Estimate: | Not Specified | ||
| Time Spent: | Not Specified | ||
| Original Estimate: | Not Specified | ||
| Description |
|
Create bucket function does not allow user to set the bucket type
We should add the bucket type to the list of parameters it is possible to work around this with the rest interface like: couchbase = Couchbase("127.0.0.1:8091", "Administrator", "password") #get the rest interface rest = couchbase._rest() rest.create_bucket(bucket='myBucket', ramQuotaMB=160, authType='sasl', saslPassword='password', replicaNumber=0, bucketType='couchbase') |