dsw-config 4.9.6__tar.gz → 4.10.1__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: dsw-config
3
- Version: 4.9.6
3
+ Version: 4.10.1
4
4
  Summary: Library for DSW config manipulation
5
5
  Author-email: Marek Suchánek <marek.suchanek@ds-wizard.org>
6
6
  License: Apache License 2.0
@@ -9,9 +9,9 @@ BuildInfo = namedtuple(
9
9
  )
10
10
 
11
11
  BUILD_INFO = BuildInfo(
12
- version='v4.9.6~0f71834',
13
- built_at='2024-09-16 12:21:39Z',
14
- sha='0f71834e877f1fd9352703cdb6017b40be824a04',
12
+ version='v4.10.1~71a6e0e',
13
+ built_at='2024-09-04 11:06:44Z',
14
+ sha='71a6e0e954a6f64987af2180f91b300060495719',
15
15
  branch='HEAD',
16
- tag='v4.9.6',
16
+ tag='v4.10.1',
17
17
  )
@@ -39,11 +39,10 @@ class SentryConfig(ConfigModel):
39
39
 
40
40
  class DatabaseConfig(ConfigModel):
41
41
 
42
- def __init__(self, connection_string: str, connection_timeout: int,
43
- queue_timeout: int):
42
+ def __init__(self, connection_string: str, connection_timeout: int, queue_timout: int):
44
43
  self.connection_string = connection_string
45
44
  self.connection_timeout = connection_timeout
46
- self.queue_timeout = queue_timeout
45
+ self.queue_timout = queue_timout
47
46
 
48
47
 
49
48
  class S3Config(ConfigModel):
@@ -83,7 +83,7 @@ class DSWConfigParser:
83
83
  return DatabaseConfig(
84
84
  connection_string=self.get(self.keys.database.connection_string),
85
85
  connection_timeout=self.get(self.keys.database.connection_timeout),
86
- queue_timeout=self.get(self.keys.database.queue_timeout),
86
+ queue_timout=self.get(self.keys.database.queue_timeout),
87
87
  )
88
88
 
89
89
  @property
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dsw-config
3
- Version: 4.9.6
3
+ Version: 4.10.1
4
4
  Summary: Library for DSW config manipulation
5
5
  Author-email: Marek Suchánek <marek.suchanek@ds-wizard.org>
6
6
  License: Apache License 2.0
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
4
4
 
5
5
  [project]
6
6
  name = 'dsw-config'
7
- version = "4.9.6"
7
+ version = "4.10.1"
8
8
  description = 'Library for DSW config manipulation'
9
9
  readme = 'README.md'
10
10
  keywords = ['dsw', 'config', 'yaml', 'parser']
File without changes
File without changes
File without changes
File without changes