[misc] drop duplicate log line for unauthorized applyOtUpdate calls

The violation is logged in Router._handleError.
This commit is contained in:
Jakob Ackermann 2020-08-27 10:18:43 +01:00
parent 425052ff91
commit 2ce7b36c95
2 changed files with 2 additions and 6 deletions

View file

@ -462,10 +462,6 @@ module.exports = WebsocketController = {
update,
function (error) {
if (error) {
logger.warn(
{ err: error, doc_id, client_id: client.id, version: update.v },
'client is not authorized to make update'
)
setTimeout(
() =>
// Disconnect, but give the client the chance to receive the error

View file

@ -1493,8 +1493,8 @@ describe('WebsocketController', function () {
// it "should disconnect the client", ->
// @client.disconnect.called.should.equal true
it('should log a warning', function () {
return this.logger.warn.called.should.equal(true)
it('should not log a warning', function () {
return this.logger.warn.called.should.equal(false)
})
return it('should call the callback with the error', function () {