Skip to content

Commit ceeeff9

Browse files
committed
fix: remove application_config changes since we use system state instead
1 parent 495643c commit ceeeff9

1 file changed

Lines changed: 0 additions & 24 deletions

File tree

core/config/application_config.go

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,6 @@ type ApplicationConfig struct {
8888

8989
OpenResponsesStoreTTL time.Duration // TTL for Open Responses store (0 = no expiration)
9090

91-
BackendImagesReleaseTag string // Release tag for backend images (e.g., "latest")
92-
BackendImagesBranchTag string // Branch tag for backend images (e.g., "master")
93-
BackendDevSuffix string // Development suffix for backend images (e.g., "development")
94-
9591
PathWithoutAuth []string
9692
}
9793

@@ -486,26 +482,6 @@ func WithOpenResponsesStoreTTL(ttl time.Duration) AppOption {
486482
}
487483
}
488484

489-
490-
func WithBackendImagesReleaseTag(tag string) AppOption {
491-
return func(o *ApplicationConfig) {
492-
o.BackendImagesReleaseTag = tag
493-
}
494-
}
495-
496-
func WithBackendImagesBranchTag(tag string) AppOption {
497-
return func(o *ApplicationConfig) {
498-
o.BackendImagesBranchTag = tag
499-
}
500-
}
501-
502-
func WithBackendDevSuffix(suffix string) AppOption {
503-
return func(o *ApplicationConfig) {
504-
o.BackendDevSuffix = suffix
505-
}
506-
}
507-
508-
509485
func WithEnforcedPredownloadScans(enforced bool) AppOption {
510486
return func(o *ApplicationConfig) {
511487
o.EnforcePredownloadScans = enforced

0 commit comments

Comments
 (0)