Skip to content

Commit

Permalink
Fix build, add extra newline for scope_info
Browse files Browse the repository at this point in the history
  • Loading branch information
robertcoltheart committed Nov 29, 2023
1 parent 395a7fc commit 4ba86a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## Unreleased

* Added support for exporting otel_scope_info tags to metrics

## 1.7.0-alpha.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ public static int WriteScopeInfo(byte[] buffer, int cursor, string scopeName)
buffer[cursor++] = unchecked((byte)' ');
buffer[cursor++] = unchecked((byte)'1');
buffer[cursor++] = ASCII_LINEFEED;
buffer[cursor++] = ASCII_LINEFEED;

return cursor;
}
Expand Down

0 comments on commit 4ba86a8

Please sign in to comment.