1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-25 00:09:40 +02:00

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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 (