Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -2304,7 +2304,7 @@ def read(self) -> typing.List[LogDataBlock]:
assert self._node is not None
assert isinstance(self._node, PostgresNode)

cur_logs: typing.Dict[__class__.LogInfo] = self._collect_logs()
cur_logs: typing.Dict[str, __class__.LogInfo] = self._collect_logs()
assert cur_logs is not None
assert type(cur_logs) == dict # noqa: E721

Expand Down Expand Up @@ -2353,7 +2353,7 @@ def read(self) -> typing.List[LogDataBlock]:

return result

def _collect_logs(self) -> typing.Dict[LogInfo]:
def _collect_logs(self) -> typing.Dict[str, LogInfo]:
assert self._node is not None
assert isinstance(self._node, PostgresNode)

Expand Down