Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion django_postgresql_reconnect/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion django_postgresql_reconnect/backend/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2022 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.

import logging

Expand Down
2 changes: 1 addition & 1 deletion django_postgresql_reconnect/decorator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2022 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.

from functools import wraps

Expand Down
2 changes: 1 addition & 1 deletion django_postgresql_reconnect/helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2022 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.

from django.db import connections

Expand Down
2 changes: 1 addition & 1 deletion django_postgresql_reconnect/middleware.py
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2022 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.

import os

Expand Down
2 changes: 1 addition & 1 deletion tests/test_backend.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2022 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.

import logging
from copy import deepcopy
Expand Down
2 changes: 1 addition & 1 deletion tests/test_decorator.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2022 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.

import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_helpers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2022 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.

import logging

Expand Down
2 changes: 1 addition & 1 deletion tests/test_middleware.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2022 Ingram Micro Inc. All rights reserved.
# Copyright © 2025 CloudBlue. All rights reserved.

import logging

Expand Down
Loading