File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1038,8 +1038,7 @@ def LOCAL__raise_cannot_start_node__std(from_exception):
1038
1038
assert nAttempt > 0
1039
1039
assert nAttempt <= __class__ ._C_MAX_START_ATEMPTS
1040
1040
if nAttempt == __class__ ._C_MAX_START_ATEMPTS :
1041
- logging .error ("Reached maximum retry attempts. Unable to start node." )
1042
- LOCAL__raise_cannot_start_node (e , "Cannot start node after multiple attempts" )
1041
+ LOCAL__raise_cannot_start_node (e , "Cannot start node after multiple attempts." )
1043
1042
1044
1043
log_files1 = self ._collect_log_files ()
1045
1044
if not self ._detect_port_conflict (log_files0 , log_files1 ):
Original file line number Diff line number Diff line change @@ -450,7 +450,7 @@ def test_port_conflict(self):
450
450
451
451
with pytest .raises (
452
452
expected_exception = StartNodeException ,
453
- match = re .escape ("Cannot start node after multiple attempts" )
453
+ match = re .escape ("Cannot start node after multiple attempts. " )
454
454
):
455
455
node2 .init ().start ()
456
456
You can’t perform that action at this time.
0 commit comments