summaryrefslogtreecommitdiff
path: root/executors.py
diff options
context:
space:
mode:
authorScott <[email protected]>2022-01-24 20:20:16 -0800
committerScott <[email protected]>2022-01-24 20:20:16 -0800
commit98d3d3251029d5dff6439311b040fca7f311983b (patch)
tree6072a9d770047e9eabe30a73dd31de810786c5eb /executors.py
parent5c1ab90f7d57b87df2e644edd2c8abef385cbd9a (diff)
Enable scp compression on remote executor to try to improve data
xfer times.
Diffstat (limited to 'executors.py')
-rw-r--r--executors.py2
1 files changed, 1 insertions, 1 deletions
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):