Skip to content

Commit

Permalink
the odd is not the app
Browse files Browse the repository at this point in the history
  • Loading branch information
mjhuff committed Mar 12, 2024
1 parent 303012e commit 7afd091
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app-shell-odd/src/notify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const pendingUnsubs = new Set<NotifyTopic>()
const log = createLogger('notify')
// MQTT is somewhat particular about the clientId format and will connect erratically if an unexpected string is supplied.
// This clientId is derived from the mqttjs library.
const CLIENT_ID = 'app-' + Math.random().toString(16).slice(2, 8)
const CLIENT_ID = 'odd-' + Math.random().toString(16).slice(2, 8)

const connectOptions: mqtt.IClientOptions = {
clientId: CLIENT_ID,
Expand Down

0 comments on commit 7afd091

Please sign in to comment.