Skip to content

Commit 9f2c2a8

Browse files
authored
Merge pull request #17 from labteral/develop
2.2301.1
2 parents a084578 + 7bba445 commit 9f2c2a8

4 files changed

Lines changed: 14 additions & 14 deletions

File tree

src/requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
msgpack >= 1.0.2, < 2.0.0
2-
python-snappy >= 0.5.4, < 1.0.0
1+
msgpack >= 1.0.4, < 2.0.0
2+
python-snappy >= 0.6.1, < 1.0.0
33
easyrocks >= 2.214.0.1, < 3.0.0
4-
pyyaml >= 5.4.1, < 6.0.0
5-
falcon >= 3.0.0, < 4.0.0
6-
bjoern >= 3.1.0, < 4.0.0
4+
pyyaml >= 6.0.0, < 7.0.0
5+
falcon >= 3.1.1, < 4.0.0
6+
bjoern >= 3.2.2, < 4.0.0

src/setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
],
2727
python_requires='>=3.6',
2828
install_requires=[
29-
'msgpack >= 1.0.2, < 2.0.0',
30-
'python-snappy >= 0.5.4, < 1.0.0',
29+
'msgpack >= 1.0.4, < 2.0.0',
30+
'python-snappy >= 0.6.1, < 1.0.0',
3131
'easyrocks >= 2.214.0.1, < 3.0.0',
32-
'pyyaml >= 5.4.1, < 6.0.0',
33-
'falcon >= 3.0.0, < 4.0.0',
34-
'bjoern >= 3.1.0, < 4.0.0',
32+
'pyyaml >= 6.0.0, < 7.0.0',
33+
'falcon >= 3.1.1, < 4.0.0',
34+
'bjoern >= 3.2.2, < 4.0.0',
3535
],
3636
entry_points={
3737
'console_scripts': [

src/stopover_server/broker.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class Broker:
4444

4545
def __init__(self, config):
4646
self.config = config
47-
utils.log_dict(self.config, prefix='⚙️ ')
47+
utils.log_dict(self.config, prefix='⚙️ ')
4848

4949
self.partitions_by_stream_lock = Lock()
5050
self.partitions_by_stream = {}
@@ -78,7 +78,7 @@ def check_authorized(self, headers):
7878
@staticmethod
7979
def on_get(request, response):
8080
response.content_type = 'text/html; charset=utf-8'
81-
response.body = f'Labteral Stopover {__version__}'
81+
response.text = f'Labteral Stopover {__version__}'
8282

8383
def on_post(self, request, response):
8484
headers = {
@@ -513,7 +513,7 @@ def _prune_loop(self):
513513

514514
for partition_number in partition_numbers:
515515
logging.info(
516-
f'pruning stream {stream} ({partition_number})'
516+
f'pruning stream {stream} (partition {partition_number})'
517517
)
518518

519519
partition = self._get_partition(

src/stopover_server/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4-
__version__ = '2.2301.0'
4+
__version__ = '2.2301.1'

0 commit comments

Comments
 (0)