mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
PadMessageHandler: Stop the USER_CHANGES timer on exception
This commit is contained in:
parent
97e382e5d2
commit
a052580bd1
1 changed files with 2 additions and 2 deletions
|
@ -676,9 +676,9 @@ const handleUserChanges = async (socket, message) => {
|
|||
stats.meter('failedChangesets').mark();
|
||||
messageLogger.warn(`Failed to apply USER_CHANGES from author ${thisSession.author} ` +
|
||||
`(socket ${socket.id}) on pad ${thisSession.padId}: ${err.stack || err}`);
|
||||
} finally {
|
||||
stopWatch.end();
|
||||
}
|
||||
|
||||
stopWatch.end();
|
||||
};
|
||||
|
||||
exports.updatePadClients = async (pad) => {
|
||||
|
|
Loading…
Reference in a new issue