Skip to content

Commit

Permalink
Merge branch 'next' of github.com:NeuraLegion/bright-cli into feat/di…
Browse files Browse the repository at this point in the history
…scoveries
  • Loading branch information
SevenWhite committed Nov 28, 2024
2 parents 135f83e + 933b39b commit b4b1509
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@brightsec/cli",
"version": "13.0.0-next.4",
"version": "13.0.0-next.5",
"private": false,
"repository": {
"type": "git",
Expand Down
4 changes: 3 additions & 1 deletion src/Repeater/ServerRepeaterLauncher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { CliInfo } from '../Config';
import { RepeaterCommandHub } from './RepeaterCommandHub';
import { delay, inject, injectable } from 'tsyringe';
import chalk from 'chalk';
import { captureException } from '@sentry/node';
import { captureException, setTag } from '@sentry/node';

@injectable()
export class ServerRepeaterLauncher implements RepeaterLauncher {
Expand Down Expand Up @@ -101,6 +101,8 @@ export class ServerRepeaterLauncher implements RepeaterLauncher {

this.repeaterRunning = true;

setTag('bridge_id', repeaterId);

if (asDaemon) {
await this.startupManager.run(() => this.close());
}
Expand Down

0 comments on commit b4b1509

Please sign in to comment.