Skip to content

Commit

Permalink
Update copyright notices on files
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jopel committed Dec 4, 2024
1 parent faf52d4 commit 3b894f9
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 1 deletion.
3 changes: 3 additions & 0 deletions scripts/templates/template.py.jinja2
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Generated by the protoc compiler with a custom plugin. DO NOT EDIT!
# sources: {{ file_template.name }}
#
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Generated by the protoc compiler with a custom plugin. DO NOT EDIT!
# sources: opentelemetry/proto/collector/logs/v1/logs_service.proto
#
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Generated by the protoc compiler with a custom plugin. DO NOT EDIT!
# sources: opentelemetry/proto/collector/metrics/v1/metrics_service.proto
#
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Generated by the protoc compiler with a custom plugin. DO NOT EDIT!
# sources: opentelemetry/proto/collector/trace/v1/trace_service.proto
#
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Generated by the protoc compiler with a custom plugin. DO NOT EDIT!
# sources: opentelemetry/proto/common/v1/common.proto
#
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Generated by the protoc compiler with a custom plugin. DO NOT EDIT!
# sources: opentelemetry/proto/logs/v1/logs.proto
#
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Generated by the protoc compiler with a custom plugin. DO NOT EDIT!
# sources: opentelemetry/proto/metrics/v1/metrics.proto
#
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Generated by the protoc compiler with a custom plugin. DO NOT EDIT!
# sources: opentelemetry/proto/resource/v1/resource.proto
#
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Generated by the protoc compiler with a custom plugin. DO NOT EDIT!
# sources: opentelemetry/proto/trace/v1/trace.proto
#
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

Expand Down
5 changes: 4 additions & 1 deletion src/snowflake/telemetry/_internal/serialize/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
#
# Copyright (c) 2012-2024 Snowflake Computing Inc. All rights reserved.
#

from __future__ import annotations

import struct
Expand Down Expand Up @@ -288,4 +292,3 @@ def serialize_repeated_uint64(self, out: bytearray, TAG: bytes, FIELD_ATTR: List
Varint.write_varint_u32(out, self.marshaler_cache[TAG])
for v in FIELD_ATTR:
Varint.write_varint_u64(out, v)

0 comments on commit 3b894f9

Please sign in to comment.