Skip to content

Commit 93e88f3

Browse files
committed
chore: revert changes that are not needed
1 parent e48773f commit 93e88f3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/live-status-gateway-api/scripts/generate-schema-types.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ if (!asyncApiDoc.document) {
6767
const filteredDiagnostics = asyncApiDoc.diagnostics.filter((d) => d.code !== 'asyncapi-latest-version')
6868

6969
console.error('No document was produced from the asyncapi parser')
70-
console.error(JSON.stringify(filteredDiagnostics, null, 2)) // TODO: maybe formatting the output is not great for tooling
70+
console.error(JSON.stringify(filteredDiagnostics.diagnostics))
7171

7272
// eslint-disable-next-line n/no-process-exit
7373
process.exit(5)

packages/live-status-gateway/src/liveStatusServer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ export class LiveStatusServer {
130130
rootChannel.addTopic(SubscriptionName.RESERVED_PACKAGES, packageStatusTopic)
131131
rootChannel.addTopic(SubscriptionName.BUCKETS, bucketsTopic)
132132

133-
const wss = new WebSocketServer({ port: 9090 })
133+
const wss = new WebSocketServer({ port: 8080 })
134134
wss.on('connection', (ws, request) => {
135135
this._logger.info(`WebSocket connection requested for path '${request.url}'`)
136136

0 commit comments

Comments
 (0)