In this way, this constant gets exported to the python world and can be used there without duplicating magic strings.
Signed-off-by: Klaus Aehlig <[email protected]> --- src/Ganeti/Constants.hs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Ganeti/Constants.hs b/src/Ganeti/Constants.hs index 68ada1e..ca76594 100644 --- a/src/Ganeti/Constants.hs +++ b/src/Ganeti/Constants.hs @@ -68,6 +68,7 @@ import Ganeti.Confd.Types (ConfdRequestType(..), ConfdReqField(..), ConfdReplyStatus(..), ConfdNodeRole(..), ConfdErrorType(..)) import qualified Ganeti.Confd.Types as Types +import qualified Ganeti.HTools.Tags.Constants as Tags {-# ANN module "HLint: ignore Use camelCase" #-} @@ -5325,3 +5326,8 @@ dataCollectorsEnabledName = "enabled_data_collectors" dataCollectorsIntervalName :: String dataCollectorsIntervalName = "data_collector_interval" + +-- * HTools tag prefixes + +exTagsPrefix :: String +exTagsPrefix = Tags.exTagsPrefix -- 2.2.0.rc0.207.ga3a616c
