Date: Tue, 10 Dec 2019 07:49:47 +0000 (UTC) From: Koichiro Iwao <meta@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r519648 - in head/sysutils/hatop: . files Message-ID: <201912100749.xBA7nlKs062413@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: meta Date: Tue Dec 10 07:49:47 2019 New Revision: 519648 URL: https://svnweb.freebsd.org/changeset/ports/519648 Log: sysutils/hatop: Fix patch added in previous commit PR: 242532 Submitted by: maintainer Modified: head/sysutils/hatop/Makefile head/sysutils/hatop/files/patch-bin_hatop Modified: head/sysutils/hatop/Makefile ============================================================================== --- head/sysutils/hatop/Makefile Tue Dec 10 06:55:44 2019 (r519647) +++ head/sysutils/hatop/Makefile Tue Dec 10 07:49:47 2019 (r519648) @@ -3,7 +3,7 @@ PORTNAME= hatop PORTVERSION= 0.7.7 -PORTREVISION= 3 +PORTREVISION= 4 DISTVERSIONPREFIX= v CATEGORIES= sysutils net Modified: head/sysutils/hatop/files/patch-bin_hatop ============================================================================== --- head/sysutils/hatop/files/patch-bin_hatop Tue Dec 10 06:55:44 2019 (r519647) +++ head/sysutils/hatop/files/patch-bin_hatop Tue Dec 10 07:49:47 2019 (r519648) @@ -1,5 +1,14 @@ ---- bin/hatop.orig 2019-12-03 21:58:07 UTC +--- bin/hatop.orig 2019-12-09 21:46:21 UTC +++ bin/hatop +@@ -404,7 +404,7 @@ class Socket: + data = self._socket.recv(HAPROXY_CLI_BUFSIZE) + if not data: + raise SocketError('error while waiting for prompt') +- return data ++ return data.decode() + + def connect(self): + # Initialize socket connection @@ -414,16 +414,16 @@ class Socket: # Enter the interactive socket mode. This requires HAProxy 1.4+ and # allows us to error out early if connected to an older version.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201912100749.xBA7nlKs062413>