diffsync 2.2.1__tar.gz → 2.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {diffsync-2.2.1 → diffsync-2.2.2}/PKG-INFO +1 -1
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/__init__.py +1 -1
- {diffsync-2.2.1 → diffsync-2.2.2}/pyproject.toml +1 -1
- {diffsync-2.2.1 → diffsync-2.2.2}/LICENSE +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/README.md +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/diff.py +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/enum.py +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/exceptions.py +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/helpers.py +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/log.py +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/logging.py +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/py.typed +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/store/__init__.py +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/store/local.py +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/store/redis.py +0 -0
- {diffsync-2.2.1 → diffsync-2.2.2}/diffsync/utils.py +0 -0
|
@@ -488,7 +488,7 @@ class Adapter: # pylint: disable=too-many-public-methods
|
|
|
488
488
|
for key, value in kwargs.items():
|
|
489
489
|
try:
|
|
490
490
|
meta_kwargs[key] = deepcopy(value)
|
|
491
|
-
except
|
|
491
|
+
except Exception: # pylint: disable=broad-exception-caught
|
|
492
492
|
# Some objects (e.g. Kafka Consumer, DB connections) cannot be deep copied
|
|
493
493
|
meta_kwargs[key] = value
|
|
494
494
|
instance = super().__new__(cls)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|