Commit 01d95ec2 authored by Cristiano Urban's avatar Cristiano Urban
Browse files

Added simple xrootd sequential copy.

parent f8dbd333
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -24,7 +24,12 @@ time.sleep(10)
print("Starting XRootD transfer test [remote-to-remote]...")
process = client.CopyProcess()
process.add_job(source = 'root://tape_frontend//home/tape_frontend/data/aaa/1.txt',
                target = 'root://transfer_node//home/transfer_node/data/1.txt', 
                target = 'root://transfer_node//home/transfer_node/data/aaa/1.txt',
                mkdir = True,
                force = True )
process.add_job(source = 'root://tape_frontend//home/tape_frontend/data/aaa/3.txt',
                target = 'root://transfer_node//home/transfer_node/data/aaa/3.txt',
                mkdir = True,
                force = True )
process.prepare()
process.run()