Skip to content

Commit

Permalink
Rename 'READY' column to 'RESERVABLE'
Browse files Browse the repository at this point in the history
  • Loading branch information
bsquizz committed Nov 4, 2021
1 parent d979b87 commit 1b22796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bonfire/bonfire.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ def _list_namespaces(available, mine, output):
data = {
"NAME": [ns.name for ns in namespaces],
"RESERVED": [str(ns.reserved).lower() for ns in namespaces],
"READY": [str(ns.ready).lower() for ns in namespaces],
"RESERVABLE": [str(ns.ready).lower() for ns in namespaces],
"REQUESTER": [ns.requester_name for ns in namespaces],
"EXPIRES IN": [ns.expires_in for ns in namespaces],
}
Expand Down

0 comments on commit 1b22796

Please sign in to comment.