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.
2 parents 196ce45 + 522924b commit d90cee3Copy full SHA for d90cee3
src/modules/websocket.ts
@@ -33,11 +33,11 @@ class cbws {
33
34
private getInitialMessage(): string {
35
try {
36
- let fileContents = fs.readFileSync('./codeboltagent.yml', 'utf8');
+ let fileContents = fs.readFileSync('./codeboltagent.yaml', 'utf8');
37
let data: any = yaml.load(fileContents);
38
return data.initial_message;
39
} catch (e) {
40
- console.error('Unable to locate codeboltagent.yml file.');
+ console.error('Unable to locate codeboltagent.yaml file.');
41
return '';
42
}
43
0 commit comments