Skip to content

Commit 68d8392

Browse files
author
Dmitriy Gumeniuk
authored
Merge pull request #250 from iivanou/enable_log_batches
Remove trailing slash when filtering log messages
2 parents a416c7e + 9dac2c6 commit 68d8392

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pytest_reportportal/rp_logging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def filter(self, record):
116116
if record.name == 'urllib3.connectionpool':
117117
# Filter the reportportal_client requests instance
118118
# urllib3 usage
119-
if self.endpoint in self.format(record):
119+
if self.endpoint.rstrip('/') in self.format(record):
120120
return False
121121
return True
122122

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dill>=0.2.7.1
22
pytest>=3.0.7
3-
reportportal-client>=5.0.8
3+
reportportal-client>=5.0.9
44
six>=1.15.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup
66

77

8-
__version__ = '5.0.7'
8+
__version__ = '5.0.8'
99

1010

1111
def read_file(fname):

0 commit comments

Comments
 (0)