diff --git a/django_postgresql_reconnect/__init__.py b/django_postgresql_reconnect/__init__.py index 6040b49..97b8e95 100644 --- a/django_postgresql_reconnect/__init__.py +++ b/django_postgresql_reconnect/__init__.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django_postgresql_reconnect.helpers import check_pgsql_connections from django_postgresql_reconnect.middleware import check_pgsql_connections_middleware diff --git a/django_postgresql_reconnect/backend/base.py b/django_postgresql_reconnect/backend/base.py index 79dc1f5..5c6a73a 100644 --- a/django_postgresql_reconnect/backend/base.py +++ b/django_postgresql_reconnect/backend/base.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging diff --git a/django_postgresql_reconnect/decorator.py b/django_postgresql_reconnect/decorator.py index 0a8b12d..1fd67fb 100644 --- a/django_postgresql_reconnect/decorator.py +++ b/django_postgresql_reconnect/decorator.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from functools import wraps diff --git a/django_postgresql_reconnect/helpers.py b/django_postgresql_reconnect/helpers.py index 0c6f2ca..5e96409 100644 --- a/django_postgresql_reconnect/helpers.py +++ b/django_postgresql_reconnect/helpers.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django.db import connections diff --git a/django_postgresql_reconnect/middleware.py b/django_postgresql_reconnect/middleware.py index f4cc36b..51ea778 100644 --- a/django_postgresql_reconnect/middleware.py +++ b/django_postgresql_reconnect/middleware.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. from django_postgresql_reconnect import check_pgsql_connections diff --git a/tests/conftest.py b/tests/conftest.py index 886b4aa..c8f8540 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import os diff --git a/tests/test_backend.py b/tests/test_backend.py index 93eac5a..2fea041 100644 --- a/tests/test_backend.py +++ b/tests/test_backend.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging from copy import deepcopy diff --git a/tests/test_decorator.py b/tests/test_decorator.py index bb322c5..291c08f 100644 --- a/tests/test_decorator.py +++ b/tests/test_decorator.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import pytest diff --git a/tests/test_helpers.py b/tests/test_helpers.py index eb38f59..ec692e9 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging diff --git a/tests/test_middleware.py b/tests/test_middleware.py index 09a9bcb..28e22ea 100644 --- a/tests/test_middleware.py +++ b/tests/test_middleware.py @@ -1,4 +1,4 @@ -# Copyright © 2022 Ingram Micro Inc. All rights reserved. +# Copyright © 2025 CloudBlue. All rights reserved. import logging