fix: remove logstore beta warning (#6244)

Co-authored-by: Livio Spring <livio.a@gmail.com>
(cherry picked from commit 35f4f74b0850fd596a7d60766d538b19ac88afc4)
This commit is contained in:
Elio Bischof 2023-07-25 08:44:47 +02:00 committed by Livio Spring
parent e2c51e8b02
commit 9b058702f2
No known key found for this signature in database
GPG Key ID: 26BB1C2FA5952CF0

View File

@ -218,9 +218,6 @@ func startZitadel(config *Config, masterKey string, server chan<- *Server) error
usageReporter := logstore.UsageReporterFunc(commands.ReportQuotaUsage)
actionsLogstoreSvc := logstore.New(queries, usageReporter, actionsExecutionDBEmitter, actionsExecutionStdoutEmitter)
if actionsLogstoreSvc.Enabled() {
logging.Warn("execution logs are currently in beta")
}
actions.SetLogstoreService(actionsLogstoreSvc)
notification.Start(ctx, config.Projections.Customizations["notifications"], config.Projections.Customizations["notificationsquotas"], config.Projections.Customizations["telemetry"], *config.Telemetry, config.ExternalDomain, config.ExternalPort, config.ExternalSecure, commands, queries, eventstoreClient, assets.AssetAPIFromDomain(config.ExternalSecure, config.ExternalPort), config.SystemDefaults.Notifications.FileSystemPath, keys.User, keys.SMTP, keys.SMS)
@ -314,9 +311,6 @@ func startAPIs(
}
accessSvc := logstore.New(quotaQuerier, usageReporter, accessDBEmitter, accessStdoutEmitter)
if accessSvc.Enabled() {
logging.Warn("access logs are currently in beta")
}
exhaustedCookieHandler := http_util.NewCookieHandler(
http_util.WithUnsecure(),
http_util.WithNonHttpOnly(),