latch-postgres 0.1.13__tar.gz → 0.1.14__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.1
2
2
  Name: latch-postgres
3
- Version: 0.1.13
3
+ Version: 0.1.14
4
4
  Summary: Postges wrapper for latch python backend services
5
5
  License: CC0 1.0
6
6
  Author: Max Smolin
@@ -538,6 +538,7 @@ def with_conn_retry(
538
538
  "db.retry.reason",
539
539
  ),
540
540
  )
541
+ await conn.rollback()
541
542
  await asyncio.sleep(delay)
542
543
  except (SerializationFailure, DeadlockDetected):
543
544
  # todo(maximsmol): should be unnecessary if the list below is precise enough
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "latch-postgres"
3
- version = "0.1.13"
3
+ version = "0.1.14"
4
4
  description = "Postges wrapper for latch python backend services"
5
5
  authors = ["Max Smolin <max@latch.bio>"]
6
6
  license = "CC0 1.0"
@@ -18,7 +18,7 @@ install_requires = \
18
18
 
19
19
  setup_kwargs = {
20
20
  'name': 'latch-postgres',
21
- 'version': '0.1.13',
21
+ 'version': '0.1.14',
22
22
  'description': 'Postges wrapper for latch python backend services',
23
23
  'long_description': '# python-postgres\n',
24
24
  'author': 'Max Smolin',
File without changes