fix recorder

This commit is contained in:
2025-03-21 12:52:39 -04:00
parent 42eea2346b
commit 1f097b1fd7
3 changed files with 9 additions and 8 deletions

View File

@ -42,8 +42,9 @@ type AmbientWeather struct {
func New(appCtx context.Context, awConfig *config.AmbientLocalExporterConfig) *AmbientWeather {
return &AmbientWeather{
Config: awConfig,
appCtx: appCtx,
Config: awConfig,
appCtx: appCtx,
RWMutex: &sync.RWMutex{},
}
}