Skip to content

Commit

Permalink
fix loki compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Jan 3, 2024
1 parent 48926b9 commit 96fd7d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/testconfig/loki.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
// TODO until we add TOML config support to WASP
func LokiConfigFromToml(config *TestConfig) *wasp.LokiConfig {
lokiConfig := wasp.NewEnvLokiConfig()
lokiConfig.BasicAuth = *config.Logging.Loki.LokiBasicAuth
lokiConfig.TenantID = *config.Logging.Loki.LokiTenantId
lokiConfig.URL = *config.Logging.Loki.LokiUrl
lokiConfig.BasicAuth = *config.Logging.Loki.BasicAuth
lokiConfig.TenantID = *config.Logging.Loki.TenantId
lokiConfig.URL = *config.Logging.Loki.Url

return lokiConfig
}

0 comments on commit 96fd7d3

Please sign in to comment.