cicada 0.8.2__py3-none-any.whl → 0.8.3__py3-none-any.whl

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.
cicada/lib/postgres.py CHANGED
@@ -19,7 +19,9 @@ def db_cicada(dbname=None):
19
19
  user = definitions["db_cicada"]["user"]
20
20
  password = definitions["db_cicada"]["password"]
21
21
 
22
- conn = psycopg2.connect(host=host, port=port, dbname=dbname, user=user, password=password, sslmode="prefer")
22
+ conn = psycopg2.connect(
23
+ host=host, port=port, dbname=dbname, user=user, password=password, sslmode="require", application_name="cicada"
24
+ )
23
25
  conn.autocommit = True
24
26
 
25
27
  return conn
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cicada
3
- Version: 0.8.2
3
+ Version: 0.8.3
4
4
  Summary: Lightweight, agent-based, distributed scheduler
5
5
  Home-page: https://github.com/transferwise/cicada
6
6
  Author: Wise
@@ -12,7 +12,7 @@ Requires-Dist: psycopg2-binary ==2.9.*
12
12
  Requires-Dist: pyyaml ==6.0.*
13
13
  Requires-Dist: croniter ==2.0.*
14
14
  Requires-Dist: tabulate ==0.9.*
15
- Requires-Dist: slack-sdk ==3.30.*
15
+ Requires-Dist: slack-sdk ==3.31.*
16
16
  Requires-Dist: backoff ==2.2.*
17
17
  Provides-Extra: dev
18
18
  Requires-Dist: pytest ==8.2.* ; extra == 'dev'
@@ -13,12 +13,12 @@ cicada/commands/show_schedule.py,sha256=fC7jRFN5xrhKEq-9N_evEdBavbS7KtQ5dfgg4IWA
13
13
  cicada/commands/spread_schedules.py,sha256=N8ni0n9mFKenC4iiBgw7X9QPV3XZf9L0u5sKvUbajH8,4507
14
14
  cicada/commands/upsert_schedule.py,sha256=pacujqNF7lzgHCG9XR4JkSlitV1s99par9hA-dMul8o,3740
15
15
  cicada/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- cicada/lib/postgres.py,sha256=DTPKRNYTi5yMC6xPPhX2l4U8hpSfTfciE77pfjd_H24,840
16
+ cicada/lib/postgres.py,sha256=HEkz_-NPlBFCks3hoqXhrEndYkr8hDRui-NQWFHMqXo,882
17
17
  cicada/lib/scheduler.py,sha256=oAidM2NgkOqQ6QzbAA2x-4lVA9K4pJMsPvm-hECgxo8,13201
18
18
  cicada/lib/utils.py,sha256=qlXe6DnKJTqrdWeIuj_0fEQ-VhMJSzentf28KV-7uOs,2247
19
- cicada-0.8.2.dist-info/LICENSE,sha256=jj_FHHgRjgQBUlPrrRsnr50zEOAhlg6gqU7mEqisyB0,10844
20
- cicada-0.8.2.dist-info/METADATA,sha256=iBxdfaTSf6akdljQvj3nAHNNjBQYAQd01YTqZ0LSs9E,5669
21
- cicada-0.8.2.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
22
- cicada-0.8.2.dist-info/entry_points.txt,sha256=Dzf3ul9hWITR4nfTDyNCtFTcQOOE57mD1x2qVniUWdE,43
23
- cicada-0.8.2.dist-info/top_level.txt,sha256=xZCtaMDbCi2CKA5PExum99ZU54IJg5iognV-k44a1W0,7
24
- cicada-0.8.2.dist-info/RECORD,,
19
+ cicada-0.8.3.dist-info/LICENSE,sha256=jj_FHHgRjgQBUlPrrRsnr50zEOAhlg6gqU7mEqisyB0,10844
20
+ cicada-0.8.3.dist-info/METADATA,sha256=KO_Q3LkN2zfFmY3P5FwWnjUwzs3DaBui3Bh9DqS0XPA,5669
21
+ cicada-0.8.3.dist-info/WHEEL,sha256=-oYQCr74JF3a37z2nRlQays_SX2MqOANoqVjBBAP2yE,91
22
+ cicada-0.8.3.dist-info/entry_points.txt,sha256=Dzf3ul9hWITR4nfTDyNCtFTcQOOE57mD1x2qVniUWdE,43
23
+ cicada-0.8.3.dist-info/top_level.txt,sha256=xZCtaMDbCi2CKA5PExum99ZU54IJg5iognV-k44a1W0,7
24
+ cicada-0.8.3.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.1.0)
2
+ Generator: setuptools (71.0.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5