Skip to content

Commit 376360b

Browse files
authored
Fix loading of prometheus server config (#437)
1 parent 0f2aca9 commit 376360b

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@ Changes are grouped as follows
1212
- `Fixed` for any bug fixes.
1313
- `Security` in case of vulnerabilities.
1414

15-
## Next
15+
## 7.5.14
1616

1717
### Added
1818

1919
* In the `unstable` package: Proper retries when fetching configs from CDF
2020

21+
### Fixed
22+
23+
* Fixed loading of prometheus server config
24+
2125
## 7.5.13
2226

2327
### Security

cognite/extractorutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Cognite extractor utils is a Python package that simplifies the development of new extractors.
1717
"""
1818

19-
__version__ = "7.5.13"
19+
__version__ = "7.5.14"
2020
from .base import Extractor
2121

2222
__all__ = ["Extractor"]

cognite/extractorutils/configtools/elements.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -513,6 +513,7 @@ class _PushGatewayConfig:
513513
push_interval: TimeIntervalConfig = TimeIntervalConfig("30s")
514514

515515

516+
@dataclass
516517
class _PromServerConfig:
517518
port: int = 9000
518519
host: str = "0.0.0.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cognite-extractor-utils"
3-
version = "7.5.13"
3+
version = "7.5.14"
44
description = "Utilities for easier development of extractors for CDF"
55
authors = [
66
{name = "Mathias Lohne", email = "mathias.lohne@cognite.com"}

0 commit comments

Comments
 (0)