Skip to content
Closed
Show file tree
Hide file tree
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
11 changes: 6 additions & 5 deletions gateway/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -14516,14 +14516,15 @@ async def send_progress_messages():
if not result.success:
_err = (getattr(result, "error", "") or "").lower()
if "flood" in _err or "retry after" in _err:
# Flood control hit — disable further edits,
# switch to sending new messages only for
# important updates. Don't block 23s.
# Flood control hit — backoff but keep editing.
# Only disable edits for non-recoverable errors.
logger.info(
"[%s] Progress edits disabled due to flood control",
"[%s] Progress edit flood control, backing off",
adapter.name,
)
can_edit = False
_last_edit_ts = time.monotonic()
else:
can_edit = False
_flood_result = await adapter.send(
chat_id=source.chat_id,
content=msg,
Expand Down
2 changes: 2 additions & 0 deletions scripts/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
# Auto-extracted from noreply emails + manual overrides
AUTHOR_MAP = {
# teknium (multiple emails)
"erhanyasarx@gmail.com": "erhnysr",
"teknium1@gmail.com": "teknium1",
"0x.badfriend@gmail.com": "discodirector",
"altriatree@gmail.com": "TruaShamu",
Expand Down Expand Up @@ -1005,6 +1006,7 @@
"zhaowh3613@outlook.com": "VinceZcrikl", # PR #23647 salvage (npm UTF-8 decode on GBK Windows)
"anton.kuenzi@gmail.com": "ZeterMordio", # PR #11754 salvage (zsh completion compdef + _arguments syntax)
"23yntong@stu.edu.cn": "iuyup", # PR #6155 salvage (shell=True hardening)
"erhanyasarx@gmail.com": "erhnysr", # PR #25555 fix(install): pin Python version on Windows
}


Expand Down