Skip to content
Closed
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 connect/eaas/runner/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
2 changes: 1 addition & 1 deletion connect/eaas/runner/config.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import logging
import platform
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/constants.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#

from connect.eaas.core.enums import (
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
class EaaSError(Exception):
pass
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/handlers/anvil.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import logging

Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/handlers/transformations.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import inspect
import logging
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/handlers/web.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2023 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#

import functools
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/helpers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import logging
import os
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import argparse
import logging
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/managers/background.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import logging
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/managers/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import inspect
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/managers/interactive.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import copy
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/managers/scheduled.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import logging
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/workers/anvil.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import logging
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/workers/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import inspect
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/workers/events.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import logging
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/workers/transformations.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import logging
Expand Down
2 changes: 1 addition & 1 deletion connect/eaas/runner/workers/web.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import base64
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import contextlib
import socket
Expand Down
2 changes: 1 addition & 1 deletion tests/test_helpers.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import logging
import os
Expand Down
2 changes: 1 addition & 1 deletion tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import sys
from collections import (
Expand Down
2 changes: 1 addition & 1 deletion tests/utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# This file is part of the Ingram Micro CloudBlue Connect EaaS Extension Runner.
#
# Copyright (c) 2022 Ingram Micro. All Rights Reserved.
# Copyright (c) 2025 CloudBlue. All Rights Reserved.
#
import asyncio
import json
Expand Down
Loading