Skip to content

Commit

Permalink
0.9.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
davidohana committed Mar 1, 2021
1 parent 4ca0b9e commit ac71a48
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,10 @@ Our project welcomes external contributions. Please refer to [CONTRIBUTING.md](C

## Change Log

##### v0.9.3
* Fixed: comparison of type int with type str in function `add_seq_to_prefix_tree` #28
(bug introduced at v0.9.1)

##### v0.9.2
* Updated jsonpickle version
* Keys `id_to_cluster` dict are now persisted by jsonpickle
Expand Down
2 changes: 1 addition & 1 deletion drain3/drain.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def get_template(self):
return ' '.join(self.log_template_tokens)

def __str__(self):
return f"ID={str(self.cluster_id).ljust(5)} : size={str(self.size).ljust()}: {self.get_template()}"
return f"ID={str(self.cluster_id).ljust(5)} : size={str(self.size).ljust(10)}: {self.get_template()}"


class Node:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
setup(
name='drain3',
packages=['drain3'],
version="0.9.2",
version="0.9.3",
license='MIT',
description="Persistent & streaming log template miner",
long_description=long_description,
Expand Down

0 comments on commit ac71a48

Please sign in to comment.