Skip to content
Snippets Groups Projects
Commit 5ba392f9 authored by Iustin Pop's avatar Iustin Pop
Browse files

Enable split queries for export in CLI


Rapi doesn't seem to export backup lists, so we enable the split query
only in gnt-backup.

Signed-off-by: default avatarIustin Pop <iustin@google.com>
Reviewed-by: default avatarMichael Hanselmann <hansmi@google.com>
parent b9b4f1bf
No related branches found
No related tags found
No related merge requests found
#
#
# Copyright (C) 2006, 2007, 2010, 2011 Google Inc.
# Copyright (C) 2006, 2007, 2010, 2011, 2013 Google Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
......@@ -50,9 +50,11 @@ def PrintExportList(opts, args):
qfilter = qlang.MakeSimpleFilter("node", opts.nodes)
cl = GetClient(query=True)
return GenericList(constants.QR_EXPORT, selected_fields, None, opts.units,
opts.separator, not opts.no_headers,
verbose=opts.verbose, qfilter=qfilter)
verbose=opts.verbose, qfilter=qfilter, cl=cl)
def ListExportFields(opts, args):
......@@ -65,8 +67,10 @@ def ListExportFields(opts, args):
@return: the desired exit code
"""
cl = GetClient(query=True)
return GenericListFields(constants.QR_EXPORT, args, opts.separator,
not opts.no_headers)
not opts.no_headers, cl=cl)
def ExportInstance(opts, args):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment