Skip to content

Commit

Permalink
Fix build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-sili committed Aug 14, 2024
1 parent 52db7ed commit 3fdba2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exporter/otlpexporter/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func createTracesExporter(
exporterhelper.WithQueue(oCfg.QueueConfig),
exporterhelper.WithStart(oce.start),
exporterhelper.WithShutdown(oce.shutdown),
exporterhelper.WithBatcher(cfg.BatcherConfig),
exporterhelper.WithBatcher(oCfg.BatcherConfig),
)
}

Expand All @@ -82,7 +82,7 @@ func createMetricsExporter(
exporterhelper.WithQueue(oCfg.QueueConfig),
exporterhelper.WithStart(oce.start),
exporterhelper.WithShutdown(oce.shutdown),
exporterhelper.WithBatcher(cfg.BatcherConfig),
exporterhelper.WithBatcher(oCfg.BatcherConfig),
)
}

Expand All @@ -101,6 +101,6 @@ func createLogsExporter(
exporterhelper.WithQueue(oCfg.QueueConfig),
exporterhelper.WithStart(oce.start),
exporterhelper.WithShutdown(oce.shutdown),
exporterhelper.WithBatcher(cfg.BatcherConfig),
exporterhelper.WithBatcher(oCfg.BatcherConfig),
)
}

0 comments on commit 3fdba2c

Please sign in to comment.