We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdfffdf commit 716dfd8Copy full SHA for 716dfd8
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@codebolt/codeboltjs",
3
- "version": "1.1.50",
+ "version": "1.1.51",
4
"description": "",
5
"keywords": [],
6
"author": "",
src/modules/websocket.ts
@@ -22,11 +22,11 @@ class cbws {
22
}
23
private getUniqueConnectionId(): string {
24
try {
25
- let fileContents = fs.readFileSync('./codeboltagent.yml', 'utf8');
+ let fileContents = fs.readFileSync('./codeboltagent.yaml', 'utf8');
26
let data: any = yaml.load(fileContents);
27
return data.unique_connectionid;
28
} catch (e) {
29
- console.error('Unable to locate codeboltagent.yml file.');
+ console.error('Unable to locate codeboltagent.yaml file.');
30
return '';
31
32
0 commit comments