Skip to content

Commit

Permalink
Merge branch 'bugfix_cpu_affinity_serialization' of github.com:/lydiy…
Browse files Browse the repository at this point in the history
…m/zeek-client

* 'bugfix_cpu_affinity_serialization' of github.com:/lydiym/zeek-client:
  fix cpu_affinity field type
  • Loading branch information
ckreibich committed Jul 9, 2024
2 parents d495295 + 9fa6fc0 commit b3ac888
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.3.1-19 | 2024-07-08 22:23:02 -0700

* fix cpu_affinity field type (Victor Dvornikov)

1.3.1-17 | 2024-07-08 22:21:09 -0700

* Additions for a metrics_port in the node state. (Christian Kreibich, Corelight)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.1-17
1.3.1-19
2 changes: 1 addition & 1 deletion zeekclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

from .logs import LOG

__version__ = "1.3.1-17"
__version__ = "1.3.1-19"
__all__ = [
"brokertypes",
"cli",
Expand Down
2 changes: 1 addition & 1 deletion zeekclient/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def to_brokertype(self):
bt.from_py(self.scripts),
options,
bt.from_py(self.interface),
bt.from_py(self.cpu_affinity, typ=bt.Count),
bt.from_py(self.cpu_affinity, typ=bt.Integer),
bt.from_py(self.env),
bt.from_py(self.metrics_port, typ=bt.Port),
]
Expand Down

0 comments on commit b3ac888

Please sign in to comment.