fix(edgejobs): migrate to transactional code EE-5324 (#8747)

This commit is contained in:
andres-portainer
2023-04-10 15:59:34 -03:00
committed by GitHub
parent a65ffe519a
commit 62128d1069
8 changed files with 229 additions and 133 deletions

View File

@@ -1565,8 +1565,14 @@ const (
)
// List of supported features
const (
FeatureFdo = "fdo"
FeatureNoTx = "noTx"
)
var SupportedFeatureFlags = []featureflags.Feature{
"fdo",
FeatureFdo,
FeatureNoTx,
}
const (