Skip to content

default bucket ignored #5

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion management/cbcompact
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def cmd(f):
% (list(args[1:]), n - 1)
sys.exit(1)

bucket = kwargs.get('bucketName', None)
bucket = kwargs.get('bucketName', None) or "default"
password = kwargs.get('password', None) or ""
purgeBeforeTs = long(kwargs.get('purgeBeforeTs', None) or 0)
purgeBeforeSeq = long(kwargs.get('purgeBeforeSeq', None) or 0)
Expand Down
2 changes: 1 addition & 1 deletion management/cbepctl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def cmd(f):
mc = args[0]
n = f.func_code.co_argcount

bucket = kwargs.get('bucketName', None)
bucket = kwargs.get('bucketName', None) or "default"
password = kwargs.get('password', None) or ""

if bucket:
Expand Down
2 changes: 1 addition & 1 deletion management/cbstats
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def cmd(f):
% (n - 1, len(args) - 1, list(args[1:])))
sys.exit(1)

bucket = kwargs.get('bucketName', None)
bucket = kwargs.get('bucketName', None) or "default"
password = kwargs.get('password', None) or ""
output_json = kwargs.get('json', None)

Expand Down