From 1c6b6f5d36cb09c0352bebc1ab26b88e4f511921 Mon Sep 17 00:00:00 2001 From: Shadowghost Date: Wed, 20 Jul 2022 07:42:52 +0200 Subject: [PATCH] Remove socket wrkaround --- Jellyfin.Server/Program.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs index 63055a61d4..2bbc2546ed 100644 --- a/Jellyfin.Server/Program.cs +++ b/Jellyfin.Server/Program.cs @@ -335,13 +335,6 @@ namespace Jellyfin.Server if (startupConfig.UseUnixSocket() && Environment.OSVersion.Platform == PlatformID.Unix) { var socketPath = GetUnixSocketPath(startupConfig, appPaths); - - // Workaround for https://github.com/aspnet/AspNetCore/issues/14134 - if (File.Exists(socketPath)) - { - File.Delete(socketPath); - } - options.ListenUnixSocket(socketPath); _logger.LogInformation("Kestrel listening to unix socket {SocketPath}", socketPath); }