From 0a57b848986ad0b8c588be854009c491a35fc840 Mon Sep 17 00:00:00 2001 From: "Andrew Jackson (Ajax)" Date: Thu, 27 Jul 2023 18:42:16 -0500 Subject: [PATCH] cleanup: itest removed from harmonydb --- documentation/en/default-lotus-miner-config.toml | 7 ------- node/config/doc_gen.go | 7 ------- node/config/types.go | 4 ---- 3 files changed, 18 deletions(-) diff --git a/documentation/en/default-lotus-miner-config.toml b/documentation/en/default-lotus-miner-config.toml index 0efb22ff0..9c3f3afb2 100644 --- a/documentation/en/default-lotus-miner-config.toml +++ b/documentation/en/default-lotus-miner-config.toml @@ -926,11 +926,4 @@ # env var: LOTUS_HARMONYDB_PORT #Port = "5433" - # ITest is for optimized integration testing and not - # for production. Blank for default production configuration. - # - # type: string - # env var: LOTUS_HARMONYDB_ITEST - #ITest = "" - diff --git a/node/config/doc_gen.go b/node/config/doc_gen.go index c513eecbc..d8976d560 100644 --- a/node/config/doc_gen.go +++ b/node/config/doc_gen.go @@ -500,13 +500,6 @@ in a cluster. Only 1 is required`, Comment: `The port to find Yugabyte. Blank for default.`, }, - { - Name: "ITest", - Type: "string", - - Comment: `ITest is for optimized integration testing and not -for production. Blank for default production configuration.`, - }, }, "IndexConfig": []DocField{ { diff --git a/node/config/types.go b/node/config/types.go index e2d1e655d..c0b6c97b7 100644 --- a/node/config/types.go +++ b/node/config/types.go @@ -751,8 +751,4 @@ type HarmonyDB struct { // The port to find Yugabyte. Blank for default. Port string - - // ITest is for optimized integration testing and not - // for production. Blank for default production configuration. - ITest string }