aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2022-07-20 07:42:52 +0200
committerShadowghost <Ghost_of_Stone@web.de>2022-07-20 07:42:52 +0200
commit1c6b6f5d36cb09c0352bebc1ab26b88e4f511921 (patch)
tree278d54e97b7dcaa353e2b750741b41869e9b8c39
parentbdb148316719c32e2aa3a3eba94e161c7824dbac (diff)
Remove socket wrkaround
-rw-r--r--Jellyfin.Server/Program.cs7
1 files changed, 0 insertions, 7 deletions
diff --git a/Jellyfin.Server/Program.cs b/Jellyfin.Server/Program.cs
index 63055a61d..2bbc2546e 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);
}