Skip to content

Commit

Permalink
Fix license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentClarret committed Feb 17, 2023
1 parent 9d6bc06 commit 4d06733
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# (C) Datadog, Inc. 2023-present
# All rights reserved
# Licensed under Simplified BSD License (see LICENSE)
# Licensed under a 3-clause BSD style license (see LICENSE)


class ConfluentKafkaClient:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# (C) Datadog, Inc. 2023-present
# All rights reserved
# Licensed under Simplified BSD License (see LICENSE)
# Licensed under a 3-clause BSD style license (see LICENSE)
from abc import ABC, abstractmethod


Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# (C) Datadog, Inc. 2023-present
# All rights reserved
# Licensed under Simplified BSD License (see LICENSE)
# Licensed under a 3-clause BSD style license (see LICENSE)

from datadog_checks.kafka_consumer.client.kafka_client import KafkaClient
from datadog_checks.kafka_consumer.client.kafka_python_client import KafkaPythonClient
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# (C) Datadog, Inc. 2023-present
# All rights reserved
# Licensed under Simplified BSD License (see LICENSE)
# Licensed under a 3-clause BSD style license (see LICENSE)
import ssl
from collections import defaultdict

Expand Down
4 changes: 4 additions & 0 deletions kafka_consumer/datadog_checks/kafka_consumer/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# (C) Datadog, Inc. 2023-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)

from datadog_checks.base import is_affirmative
from datadog_checks.kafka_consumer.constants import (
BROKER_REQUESTS_BATCH_SIZE,
Expand Down
2 changes: 1 addition & 1 deletion kafka_consumer/tests/python_client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# (C) Datadog, Inc. 2023-present
# All rights reserved
# Licensed under Simplified BSD License (see LICENSE)
# Licensed under a 3-clause BSD style license (see LICENSE)
2 changes: 1 addition & 1 deletion kafka_consumer/tests/python_client/test_e2e.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# (C) Datadog, Inc. 2023-present
# All rights reserved
# Licensed under Simplified BSD License (see LICENSE)
# Licensed under a 3-clause BSD style license (see LICENSE)
import pytest

from ..common import assert_check_kafka
Expand Down
2 changes: 1 addition & 1 deletion kafka_consumer/tests/python_client/test_integration.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# (C) Datadog, Inc. 2023-present
# All rights reserved
# Licensed under Simplified BSD License (see LICENSE)
# Licensed under a 3-clause BSD style license (see LICENSE)
import pytest

from datadog_checks.kafka_consumer import KafkaCheck
Expand Down
2 changes: 1 addition & 1 deletion kafka_consumer/tests/python_client/test_unit.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# (C) Datadog, Inc. 2023-present
# All rights reserved
# Licensed under Simplified BSD License (see LICENSE)
# Licensed under a 3-clause BSD style license (see LICENSE)
import copy
from contextlib import nullcontext as does_not_raise

Expand Down

0 comments on commit 4d06733

Please sign in to comment.