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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: diffsync
3
- Version: 2.2.1
3
+ Version: 2.2.2
4
4
  Summary: Library to easily sync/diff/update 2 different data sources
5
5
  License: Apache-2.0
6
6
  Keywords: source-of-truth,synchronization
@@ -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 (TypeError, AttributeError):
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)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "diffsync"
3
- version = "2.2.1"
3
+ version = "2.2.2"
4
4
  description = "Library to easily sync/diff/update 2 different data sources"
5
5
  authors = ["Network to Code, LLC <info@networktocode.com>"]
6
6
  license = "Apache-2.0"
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