Skip to content

Commit

Permalink
Fix bug from PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
victlu committed Jun 19, 2021
1 parent 3fd02db commit 060d29d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OpenTelemetry/Metrics/DataPoint/DataValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace OpenTelemetry.Metrics
internal DataValue(int value)
{
// Promote to long
this.value = new DataValue<int>(value);
this.value = new DataValue<long>(value);
}

internal DataValue(long value)
Expand Down

0 comments on commit 060d29d

Please sign in to comment.