From 98d3d3251029d5dff6439311b040fca7f311983b Mon Sep 17 00:00:00 2001 From: Scott Date: Mon, 24 Jan 2022 20:20:16 -0800 Subject: [PATCH] Enable scp compression on remote executor to try to improve data xfer times. --- executors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/executors.py b/executors.py index dcc2180..399e32d 100644 --- a/executors.py +++ b/executors.py @@ -63,7 +63,7 @@ parser.add_argument( ) SSH = '/usr/bin/ssh -oForwardX11=no' -SCP = '/usr/bin/scp' +SCP = '/usr/bin/scp -C' def make_cloud_pickle(fun, *args, **kwargs): -- 2.45.2