Skip to content

Commit

Permalink
refactor(metric-reader): remove empty options from calls in MetricCol…
Browse files Browse the repository at this point in the history
…lector.
  • Loading branch information
pichlermarc committed Jan 7, 2022
1 parent 2de4fc9 commit 056ea19
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ export class MetricCollector implements MetricProducer {
* Delegates for MetricReader.forceFlush.
*/
async forceFlush(): Promise<void> {
await this._metricReader.forceFlush({});
await this._metricReader.forceFlush();
}

/**
* Delegates for MetricReader.shutdown.
*/
async shutdown(): Promise<void> {
await this._metricReader.shutdown({});
await this._metricReader.shutdown();
}
}

Expand Down

0 comments on commit 056ea19

Please sign in to comment.