We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6bdf63 commit 988a27bCopy full SHA for 988a27b
src/OpenTelemetry/Metrics/BaseExportingMetricReader.cs
@@ -44,8 +44,8 @@ public BaseExportingMetricReader(BaseExporter<Metric> exporter)
44
45
this.exporter = exporter;
46
47
- var exportorType = exporter.GetType();
48
- var attributes = exportorType.GetCustomAttributes(typeof(ExportModesAttribute), true);
+ var exporterType = exporter.GetType();
+ var attributes = exporterType.GetCustomAttributes(typeof(ExportModesAttribute), true);
49
if (attributes.Length > 0)
50
{
51
var attr = (ExportModesAttribute)attributes[attributes.Length - 1];
0 commit comments