Move int cast to helper try block
This commit is contained in:
parent
1f77b382ef
commit
b1c19a21ba
|
@ -310,7 +310,9 @@ def vm_console(vm, lines=None):
|
|||
Return the current console log for VM.
|
||||
"""
|
||||
# Default to 10 lines of log if not set
|
||||
if not lines:
|
||||
try:
|
||||
lines = int(lines)
|
||||
except TypeError:
|
||||
lines = 10
|
||||
|
||||
zk_conn = pvc_common.startZKConnection(config['coordinators'])
|
||||
|
|
|
@ -1331,7 +1331,7 @@ class API_VM_Console(Resource):
|
|||
"""
|
||||
return api_helper.vm_console(
|
||||
vm,
|
||||
int(reqargs.get('lines', None))
|
||||
reqargs.get('lines', None)
|
||||
)
|
||||
api.add_resource(API_VM_Console, '/vm/<vm>/console')
|
||||
|
||||
|
|
Loading…
Reference in New Issue