aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--plugins/ObjectCacheServer/src/Endpoints/ConnectEndpoint.cs1
-rw-r--r--plugins/ObjectCacheServer/src/Endpoints/PeerDiscoveryEndpoint.cs1
-rw-r--r--plugins/ObjectCacheServer/src/Endpoints/WellKnownEndpoint.cs1
3 files changed, 0 insertions, 3 deletions
diff --git a/plugins/ObjectCacheServer/src/Endpoints/ConnectEndpoint.cs b/plugins/ObjectCacheServer/src/Endpoints/ConnectEndpoint.cs
index a798314..d07c59e 100644
--- a/plugins/ObjectCacheServer/src/Endpoints/ConnectEndpoint.cs
+++ b/plugins/ObjectCacheServer/src/Endpoints/ConnectEndpoint.cs
@@ -82,7 +82,6 @@ namespace VNLib.Data.Caching.ObjectCache.Server.Endpoints
///<inheritdoc/>
protected override ProtectionSettings EndpointProtectionSettings { get; } = new()
{
- DisableBrowsersOnly = true,
DisableSessionsRequired = true
};
diff --git a/plugins/ObjectCacheServer/src/Endpoints/PeerDiscoveryEndpoint.cs b/plugins/ObjectCacheServer/src/Endpoints/PeerDiscoveryEndpoint.cs
index adb83e0..7d376b8 100644
--- a/plugins/ObjectCacheServer/src/Endpoints/PeerDiscoveryEndpoint.cs
+++ b/plugins/ObjectCacheServer/src/Endpoints/PeerDiscoveryEndpoint.cs
@@ -47,7 +47,6 @@ namespace VNLib.Data.Caching.ObjectCache.Server.Endpoints
///<inheritdoc/>
protected override ProtectionSettings EndpointProtectionSettings { get; } = new()
{
- DisableBrowsersOnly = true,
DisableSessionsRequired = true
};
diff --git a/plugins/ObjectCacheServer/src/Endpoints/WellKnownEndpoint.cs b/plugins/ObjectCacheServer/src/Endpoints/WellKnownEndpoint.cs
index 3fcc471..87a471b 100644
--- a/plugins/ObjectCacheServer/src/Endpoints/WellKnownEndpoint.cs
+++ b/plugins/ObjectCacheServer/src/Endpoints/WellKnownEndpoint.cs
@@ -53,7 +53,6 @@ namespace VNLib.Data.Caching.ObjectCache.Server.Endpoints
//Loosen up security requirements
protected override ProtectionSettings EndpointProtectionSettings { get; } = new()
{
- DisableBrowsersOnly = true,
DisableSessionsRequired = true,
};