From f5618038c82e991c061da58cc4186a572c73fdb4 Mon Sep 17 00:00:00 2001 From: Esme Povirk Date: Tue, 30 Jul 2024 21:32:15 +0000 Subject: [PATCH] proton: Add documentation URL for file descriptor limit warning. --- proton | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proton b/proton index 3170b560..c66b4117 100755 --- a/proton +++ b/proton @@ -1487,7 +1487,7 @@ class Session: # check for low fd limit _soft_limit, hard_limit = resource.getrlimit(resource.RLIMIT_NOFILE) if hard_limit < 524288: - self.log_file.write(f"WARNING: Low file descriptor limit: {hard_limit}\n") + self.log_file.write(f"WARNING: Low file descriptor limit: {hard_limit} (see https://github.com/ValveSoftware/Proton/wiki/File-Descriptors)\n") self.log_file.write("======================\n") self.log_file.flush()