diff options
| author | Scott <[email protected]> | 2022-01-24 20:20:16 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2022-01-24 20:20:16 -0800 |
| commit | 98d3d3251029d5dff6439311b040fca7f311983b (patch) | |
| tree | 6072a9d770047e9eabe30a73dd31de810786c5eb | |
| parent | 5c1ab90f7d57b87df2e644edd2c8abef385cbd9a (diff) | |
Enable scp compression on remote executor to try to improve data
xfer times.
| -rw-r--r-- | executors.py | 2 |
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): |
