From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Marko Lemmetty Date: Fri, 15 May 2020 14:33:17 +0300 Subject: [PATCH] Support synchronous copyproj --- osc/commandline.py | 5 +++++ osc/core.py | 2 ++ 2 files changed, 7 insertions(+) diff --git a/osc/commandline.py b/osc/commandline.py index c18b3cb3ad9369356a9d8c014ce3f7f4c9b92d1c..76c9131fe498c8b03e2d8f739091c1930bfb09f4 100644 --- a/osc/commandline.py +++ b/osc/commandline.py @@ -3136,6 +3136,8 @@ Please submit there instead, or use --nodevelproject to force direct submission. @cmdln.option('-b', '--with-binaries', action='store_true', help='copy the built binaries over to avoid a rebuild') + @cmdln.option('-n', '--now', action='store_true', + help='copy synchronously (may take some time to complete)') @cmdln.option('-x', '--with-history', action='store_true', help='replicate the history of each package.') @cmdln.option('-o', '--make-older', action='store_true', @@ -3153,6 +3155,8 @@ Please submit there instead, or use --nodevelproject to force direct submission. The user must be able to create DESTPRJ + Normally the copy is done asynchronously + usage: osc copyprj SOURCEPRJ DESTPRJ ${cmd_option_list} @@ -3182,6 +3186,7 @@ Please submit there instead, or use --nodevelproject to force direct submission. withhistory = opts.with_history, makeolder = opts.make_older, resign = opts.re_sign, + now = opts.now, comment = comment) print("done cp") print(r) diff --git a/osc/core.py b/osc/core.py index a3c45884eadc729cc785dd7c9cc3e5723c516b92..60137a067ead1b040c516b88c102827cdefd1414 100644 --- a/osc/core.py +++ b/osc/core.py @@ -5573,6 +5573,8 @@ def copy_prj(src_apiurl, src_project, dst_project, query['resign'] = '1' if comment: query['comment'] = comment + if now: + query['nodelay'] = '1' u = makeurl(src_apiurl, ['source', dst_project], query=query) print("copyprj ", u, file=sys.stderr) f = http_POST(u)