From f34783ccc759eb2b31bf34cdd6943cb2e1211344 Mon Sep 17 00:00:00 2001 From: E M <5089238+emizzle@users.noreply.github.com> Date: Wed, 24 Jun 2026 15:45:45 +1000 Subject: [PATCH] fix: openapi.yaml spec was out-of-sync with logos-storage-nim@master The whitespace diffs were causing a hash mismatch --- ProjectPlugins/LogosStorageClient/openapi.yaml | 14 +++++++------- ProjectPlugins/StoragePlugin/ApiChecker.cs | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ProjectPlugins/LogosStorageClient/openapi.yaml b/ProjectPlugins/LogosStorageClient/openapi.yaml index 61dee2ee..490b989d 100644 --- a/ProjectPlugins/LogosStorageClient/openapi.yaml +++ b/ProjectPlugins/LogosStorageClient/openapi.yaml @@ -58,11 +58,11 @@ components: Node: type: object required: - - nodeId - - peerId - - record - - address - - seen + - nodeId + - peerId + - record + - address + - seen properties: nodeId: type: string @@ -88,8 +88,8 @@ components: PeersTable: type: object required: - - localNode - - nodes + - localNode + - nodes properties: localNode: $ref: "#/components/schemas/Node" diff --git a/ProjectPlugins/StoragePlugin/ApiChecker.cs b/ProjectPlugins/StoragePlugin/ApiChecker.cs index 89a4823d..b14ab107 100644 --- a/ProjectPlugins/StoragePlugin/ApiChecker.cs +++ b/ProjectPlugins/StoragePlugin/ApiChecker.cs @@ -10,7 +10,7 @@ namespace StoragePlugin public class ApiChecker { // - private const string OpenApiYamlHash = "F8-A3-C0-20-EA-02-23-36-1C-80-B5-31-68-D8-C4-94-7F-C5-4A-E9-2C-90-89-3F-C8-45-84-54-3A-D8-3E-B7"; + private const string OpenApiYamlHash = "32-CA-3F-60-39-3D-DA-43-05-7F-F9-36-DB-4A-01-DB-9F-AC-11-36-22-9E-92-F9-42-F0-4F-9F-DC-E8-FD-01"; private const string OpenApiFilePath = "/logosstorage/openapi.yaml"; private const string DisableEnvironmentVariable = "StoragePlugin_DISABLE_APICHECK";