From b42ce9b682d70e4afafe65c224d7143ced3d21c0 Mon Sep 17 00:00:00 2001 From: SteveGibsonX Date: Wed, 21 Jan 2026 17:50:30 -0500 Subject: [PATCH] Name network thread --- sdks/csharp/src/SpacetimeDBClient.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/sdks/csharp/src/SpacetimeDBClient.cs b/sdks/csharp/src/SpacetimeDBClient.cs index 1f0637a7e1d..8051ea4fb22 100644 --- a/sdks/csharp/src/SpacetimeDBClient.cs +++ b/sdks/csharp/src/SpacetimeDBClient.cs @@ -210,6 +210,7 @@ protected DbConnectionBase() #if !(UNITY_WEBGL && !UNITY_EDITOR) // For targets other than webgl we start a thread to parse messages networkMessageParseThread = new Thread(ParseMessages); + networkMessageParseThread.Name = "SpacetimeDB Network Thread"; networkMessageParseThread.Start(); #endif }