Skip to content

Commit

Permalink
* Update timeout settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ag-ramachandran committed Oct 5, 2023
1 parent 16ff03a commit 64e5578
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions exporter/azuredataexplorerexporter/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func createMetricsExporter(
set,
adxCfg,
adp.metricsDataPusher,
exporterhelper.WithTimeout(exporterhelper.TimeoutSettings{Timeout: 0}),
exporterhelper.WithTimeout(adxCfg.TimeoutSettings),
exporterhelper.WithRetry(adxCfg.RetrySettings),
exporterhelper.WithQueue(adxCfg.QueueSettings),
exporterhelper.WithShutdown(adp.Close))
Expand Down Expand Up @@ -106,7 +106,7 @@ func createTracesExporter(
set,
adxCfg,
adp.tracesDataPusher,
exporterhelper.WithTimeout(exporterhelper.TimeoutSettings{Timeout: 0}),
exporterhelper.WithTimeout(adxCfg.TimeoutSettings),
exporterhelper.WithRetry(adxCfg.RetrySettings),
exporterhelper.WithQueue(adxCfg.QueueSettings),
exporterhelper.WithShutdown(adp.Close))
Expand Down Expand Up @@ -138,7 +138,7 @@ func createLogsExporter(
set,
adxCfg,
adp.logsDataPusher,
exporterhelper.WithTimeout(exporterhelper.TimeoutSettings{Timeout: 0}),
exporterhelper.WithTimeout(adxCfg.TimeoutSettings),
exporterhelper.WithRetry(adxCfg.RetrySettings),
exporterhelper.WithQueue(adxCfg.QueueSettings),
exporterhelper.WithShutdown(adp.Close))
Expand Down

0 comments on commit 64e5578

Please sign in to comment.