Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Set retry_last_ts and retry_interval
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Dec 5, 2023
1 parent 51e4e35 commit f7754cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synapse/rest/admin/federation.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ async def on_GET(self, request: SynapseRequest) -> Tuple[int, JsonDict]:
"destinations": [
{
"destination": r[0],
"retry_last_ts": r[1],
"retry_interval": r[2],
"retry_last_ts": r[1] or 0,
"retry_interval": r[2] or 0,
"failure_ts": r[3],
"last_successful_stream_ordering": r[4],
}
Expand Down

0 comments on commit f7754cf

Please sign in to comment.