Skip to content

Commit 716dfd8

Browse files
changes
1 parent fdfffdf commit 716dfd8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codebolt/codeboltjs",
3-
"version": "1.1.50",
3+
"version": "1.1.51",
44
"description": "",
55
"keywords": [],
66
"author": "",

src/modules/websocket.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ class cbws {
2222
}
2323
private getUniqueConnectionId(): string {
2424
try {
25-
let fileContents = fs.readFileSync('./codeboltagent.yml', 'utf8');
25+
let fileContents = fs.readFileSync('./codeboltagent.yaml', 'utf8');
2626
let data: any = yaml.load(fileContents);
2727
return data.unique_connectionid;
2828
} catch (e) {
29-
console.error('Unable to locate codeboltagent.yml file.');
29+
console.error('Unable to locate codeboltagent.yaml file.');
3030
return '';
3131
}
3232
}

0 commit comments

Comments
 (0)