aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-03-19 13:56:27 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-03-19 13:56:27 -0400
commit2027296bb0bd1e72f93c4f470cadca153c7ec2dd (patch)
tree809bcbc087253272278f6ac10c0c6c14932bf477 /plugins
parent23c9080c208c6d2f94df0b17c9c7dc74ff1766c1 (diff)
RestSharp version update, PKI optional login endpoint
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CacheBroker/src/Endpoints/BrokerRegistrationEndpoint.cs2
-rw-r--r--plugins/ObjectCacheServer/src/ObjectCacheServerEntry.cs2
2 files changed, 3 insertions, 1 deletions
diff --git a/plugins/CacheBroker/src/Endpoints/BrokerRegistrationEndpoint.cs b/plugins/CacheBroker/src/Endpoints/BrokerRegistrationEndpoint.cs
index 61540b9..b350e73 100644
--- a/plugins/CacheBroker/src/Endpoints/BrokerRegistrationEndpoint.cs
+++ b/plugins/CacheBroker/src/Endpoints/BrokerRegistrationEndpoint.cs
@@ -51,6 +51,8 @@ using VNLib.Plugins.Extensions.Loading.Events;
using VNLib.Plugins.Extensions.Loading.Routing;
using VNLib.Net.Rest.Client;
+using ContentType = VNLib.Net.Http.ContentType;
+
#nullable enable
namespace VNLib.Plugins.Cache.Broker.Endpoints
diff --git a/plugins/ObjectCacheServer/src/ObjectCacheServerEntry.cs b/plugins/ObjectCacheServer/src/ObjectCacheServerEntry.cs
index 5a748ef..2fa6220 100644
--- a/plugins/ObjectCacheServer/src/ObjectCacheServerEntry.cs
+++ b/plugins/ObjectCacheServer/src/ObjectCacheServerEntry.cs
@@ -524,7 +524,7 @@ namespace VNLib.Data.Caching.ObjectCache.Server
return;
case "deleted":
//Delete the object from the store
- _ = cacheStore.DeleteItemAsync(changedObject.CurrentId).ConfigureAwait(false);
+ await cacheStore.DeleteItemAsync(changedObject.CurrentId);
break;
case "modified":
//Reload the record from the store