Skip to content
This repository was archived by the owner on Feb 18, 2026. It is now read-only.

Commit 1c5646f

Browse files
committed
typo in error message
1 parent ccee580 commit 1c5646f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/clients/BloombergBridgeClient/BloombergBridgeClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,14 +292,14 @@ export class BloombergBridgeClient {
292292

293293
// if we don't get a response something is wrong
294294
const timeout = setTimeout(() => {
295-
console.error('BBG_connection_status check timed-out. Is the BLoomberg Bridge running?', null);
295+
console.error('BBG_connection_status check timed-out. Is the Bloomberg Bridge running?', null);
296296
cb('Connection check timeout', null);
297297
}, CONNECTION_CHECK_TIMEOUT);
298298

299299
void this.routerClient?.query('BBG_connection_status', {}, (err, resp: { data?: { registered: boolean } }) => {
300300
clearTimeout(timeout);
301301
if (err) {
302-
console.warn('Received error when checking connection status. Is the BLoomberg Bridge running?', err);
302+
console.warn('Received error when checking connection status. Is the Bloomberg Bridge running?', err);
303303
cb(err, false);
304304
} else {
305305
if (resp && resp.data && resp.data['registered']) {

0 commit comments

Comments
 (0)