Skip to content

Commit fc9249d

Browse files
committed
updates to 0.1.6
1 parent 978e085 commit fc9249d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ProjectPlugins/CodexContractsPlugin/Marketplace/Marketplace.cs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

ProjectPlugins/CodexPlugin/ApiChecker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ namespace CodexPlugin
1010
public class ApiChecker
1111
{
1212
// <INSERT-OPENAPI-YAML-HASH>
13-
private const string OpenApiYamlHash = "8B-C5-3F-BF-E6-6C-6A-4F-1C-70-29-19-46-AA-E6-71-DC-56-0A-A0-BC-73-A5-11-9E-66-CE-09-1E-86-20-FC";
13+
private const string OpenApiYamlHash = "AC-19-7F-3A-88-07-CB-43-53-60-4F-21-3D-A6-B1-53-47-65-07-3B-91-C6-88-B9-76-B2-7E-33-6A-1C-69-F4";
1414
private const string OpenApiFilePath = "/codex/openapi.yaml";
1515
private const string DisableEnvironmentVariable = "CODEXPLUGIN_DISABLE_APICHECK";
1616

ProjectPlugins/CodexPlugin/CodexContainerRecipe.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace CodexPlugin
77
{
88
public class CodexContainerRecipe : ContainerRecipeFactory
99
{
10-
private const string DefaultDockerImage = "codexstorage/nim-codex:0.1.5-dist-tests";
10+
private const string DefaultDockerImage = "codexstorage/nim-codex:0.1.6-dist-tests";
1111
public const string ApiPortTag = "codex_api_port";
1212
public const string ListenPortTag = "codex_listen_port";
1313
public const string MetricsPortTag = "codex_metrics_port";

ProjectPlugins/CodexPlugin/openapi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,15 +330,15 @@ components:
330330
quotaMaxBytes:
331331
type: integer
332332
format: int64
333-
description: "Maximum storage space used by the node"
333+
description: "Maximum storage space (in bytes) available for the node in Codex's local repository."
334334
quotaUsedBytes:
335335
type: integer
336336
format: int64
337-
description: "Amount of storage space currently in use"
337+
description: "Amount of storage space (in bytes) currently used for storing files in Codex's local repository."
338338
quotaReservedBytes:
339339
type: integer
340340
format: int64
341-
description: "Amount of storage space reserved"
341+
description: "Amount of storage reserved (in bytes) in the Codex's local repository for future use when storage requests will be picked up and hosted by the node using node's availabilities. This does not include the storage currently in use."
342342

343343
servers:
344344
- url: "http://localhost:8080/api/codex/v1"

0 commit comments

Comments
 (0)