aboutsummaryrefslogtreecommitdiff
path: root/Plugins/SessionCacheServer
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/SessionCacheServer')
-rw-r--r--Plugins/SessionCacheServer/Endpoints/ConnectEndpoint.cs10
-rw-r--r--Plugins/SessionCacheServer/SessionCacheServer.csproj1
-rw-r--r--Plugins/SessionCacheServer/SessionServerEntrypoint.cs2
3 files changed, 5 insertions, 8 deletions
diff --git a/Plugins/SessionCacheServer/Endpoints/ConnectEndpoint.cs b/Plugins/SessionCacheServer/Endpoints/ConnectEndpoint.cs
index 0385601..bb5fcac 100644
--- a/Plugins/SessionCacheServer/Endpoints/ConnectEndpoint.cs
+++ b/Plugins/SessionCacheServer/Endpoints/ConnectEndpoint.cs
@@ -22,7 +22,7 @@ using VNLib.Plugins.Essentials.Endpoints;
using VNLib.Plugins.Essentials.Extensions;
-namespace VNLib.Plugins.Essentials.Sessions.Server
+namespace VNLib.Plugins.Essentials.Sessions.Server.Endpoints
{
class ConnectEndpoint : ResourceEndpointBase
{
@@ -95,8 +95,8 @@ namespace VNLib.Plugins.Essentials.Sessions.Server
}
}
catch (OperationCanceledException)
- {}
- catch(Exception ex)
+ { }
+ catch (Exception ex)
{
Log.Error(ex);
}
@@ -107,7 +107,7 @@ namespace VNLib.Plugins.Essentials.Sessions.Server
public int RecvBufferSize { get; init; }
public int MaxHeaderBufferSize { get; init; }
public int MaxMessageSize { get; init; }
- public int MaxResponseBufferSize { get; init; }
+ public int MaxResponseBufferSize { get; init; }
public AsyncQueue<ChangeEvent>? SyncQueue { get; init; }
}
@@ -207,7 +207,7 @@ namespace VNLib.Plugins.Essentials.Sessions.Server
try
{
WsUserState state = (wss.UserState as WsUserState)!;
-
+
//Init listener args from request
FBMListenerSessionParams args = new()
{
diff --git a/Plugins/SessionCacheServer/SessionCacheServer.csproj b/Plugins/SessionCacheServer/SessionCacheServer.csproj
index 8c45a24..580bac3 100644
--- a/Plugins/SessionCacheServer/SessionCacheServer.csproj
+++ b/Plugins/SessionCacheServer/SessionCacheServer.csproj
@@ -36,7 +36,6 @@
<ProjectReference Include="..\..\..\..\VNLib\Essentials\VNLib.Plugins.Essentials.csproj" />
<ProjectReference Include="..\..\..\DataCaching\VNLib.Data.Caching.Extensions\VNLib.Data.Caching.Extensions.csproj" />
<ProjectReference Include="..\..\..\DataCaching\VNLib.Data.Caching.ObjectCache\VNLib.Data.Caching.ObjectCache.csproj" />
- <ProjectReference Include="..\..\..\Extensions\VNLib.Plugins.Extensions.Loading\VNLib.Plugins.Extensions.Loading.csproj" />
<ProjectReference Include="..\..\..\PluginBase\VNLib.Plugins.PluginBase.csproj" />
<ProjectReference Include="..\CacheBroker\CacheBroker.csproj" />
</ItemGroup>
diff --git a/Plugins/SessionCacheServer/SessionServerEntrypoint.cs b/Plugins/SessionCacheServer/SessionServerEntrypoint.cs
index 45c5da2..4d00c8d 100644
--- a/Plugins/SessionCacheServer/SessionServerEntrypoint.cs
+++ b/Plugins/SessionCacheServer/SessionServerEntrypoint.cs
@@ -25,10 +25,8 @@ using VNLib.Net.Messaging.FBM.Client;
using VNLib.Plugins.Cache.Broker.Endpoints;
using VNLib.Plugins.Extensions.Loading;
using VNLib.Plugins.Extensions.Loading.Routing;
-using VNLib.Plugins.Extensions.Loading.Configuration;
using VNLib.Plugins.Essentials.Sessions.Server.Endpoints;
-
namespace VNLib.Plugins.Essentials.Sessions.Server
{
public sealed class SessionServerEntrypoint : PluginBase