From 6da59487692b2f0321e06ff794efb62cd993557f Mon Sep 17 00:00:00 2001 From: KK <68334452+healthjyk@users.noreply.github.com> Date: Wed, 8 May 2024 11:01:18 +0800 Subject: [PATCH] chore: clean up the exposing of mysql table (#1108) --- pkg/engine/state/storages/util.go | 1 - pkg/workspace/storages/util.go | 1 - 2 files changed, 2 deletions(-) diff --git a/pkg/engine/state/storages/util.go b/pkg/engine/state/storages/util.go index d170e35f..ba3a7081 100644 --- a/pkg/engine/state/storages/util.go +++ b/pkg/engine/state/storages/util.go @@ -8,7 +8,6 @@ import ( const ( stateFile = "state.yaml" - stateTable = "state" statesPrefix = "states" ) diff --git a/pkg/workspace/storages/util.go b/pkg/workspace/storages/util.go index d7e6187c..f5a1edd3 100644 --- a/pkg/workspace/storages/util.go +++ b/pkg/workspace/storages/util.go @@ -11,7 +11,6 @@ const ( DefaultWorkspace = "default" workspacesPrefix = "workspaces" - workspaceTable = "workspace" metadataFile = ".metadata.yml" yamlSuffix = ".yaml" )