Skip to content

Commit

Permalink
reduce onStatusMsg retry timeout to 10ms
Browse files Browse the repository at this point in the history
https: //github.com//pull/7390#discussion_r1351943503
Signed-off-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Change-Id: I0a32933d54fa44486c6807c4d0b01e2029700271
  • Loading branch information
caolanm committed Oct 12, 2023
1 parent 2586e04 commit dffef0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/src/core/Socket.js
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,7 @@ app.definitions.Socket = L.Class.extend({
// Retry in a bit.
setTimeout(function() {
that._onStatusMsg(textMsg, command);
}, 100);
}, 10);
return;
}

Expand Down

0 comments on commit dffef0e

Please sign in to comment.