Skip to content

Commit

Permalink
Fix debugging event (still broken, but better debugging)
Browse files Browse the repository at this point in the history
  • Loading branch information
EvanHahn committed Oct 2, 2024
1 parent 48a3c2e commit 67ace56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sync/sync-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ export class SyncApi extends TypedEmitter {
const websocket = new WebSocket(url)

// TODO: Remove this after we've debugged why we're getting a 400 error
websocket.on('unexpected-respose', (req, res) => {
console.log('@@@@', 'unexpected response', req, res)
websocket.on('unexpected-response', (req, res) => {
console.log('@@@@', 'unexpected response', res)
})

const replicationStream = this.#getReplicationStream()
Expand Down

0 comments on commit 67ace56

Please sign in to comment.