|
From: Gert D. <ge...@gr...> - 2017-11-17 14:20:18
|
Hi,
On Fri, Nov 17, 2017 at 02:04:48PM +0100, Ralf Hildebrandt wrote:
> Now I tried pushing individual compression algorithms to clients,
> testing with my own account:
>
> if (defined $ENV{'IV_LZ4'} && ($username eq "hildeb") ) {
> $logger->info("$username LZ4 available");
> push @outline, 'push "compress lz4"';
You need to config both sides, push remote and compress local:
if (defined $ENV{'IV_LZ4'} && ($username eq "hildeb") ) {
$logger->info("$username LZ4 available");
push @outline, 'push "compress lz4"', 'compress lz4';
(the server can speak different compression algorithms at a time, but
for reasons lost in the mists of time it needs to be told what to expect
- even though the compression byte is actually telling it)
gert
--
now what should I write here...
Gert Doering - Munich, Germany ge...@gr...
|