From 45dbb18177c158f05510d570251b512aa98bfefc Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Fri, 8 May 2020 17:22:35 +0200 Subject: [PATCH] ext. metric server: workaround stupid MTU problem.. Signed-off-by: Thomas Lamprecht --- PVE/Status/Plugin.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/Status/Plugin.pm b/PVE/Status/Plugin.pm index b1c91f8e..27d2156d 100644 --- a/PVE/Status/Plugin.pm +++ b/PVE/Status/Plugin.pm @@ -69,7 +69,7 @@ sub _disconnect { # UDP cannot do more than 64k at once. Overwrite for different protocol limits. sub _send_batch_size { my ($class, $cfg) = @_; - return 48000; + return 1200; # FIXME: why??? MTU fragmentation should be handled by layer2 } # call with the smalles $data chunks possible