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 b023d21 commit 117068fCopy full SHA for 117068f
apps/agent-provisioning/src/agent-provisioning.service.ts
@@ -57,11 +57,11 @@ export class AgentProvisioningService {
57
let agentEndPoint;
58
59
if (agentEndPointExists) {
60
- this.logger.log('Both files exist');
+ this.logger.log('Agent endpoint file exists');
61
agentEndPoint = await fs.readFileSync(agentEndpointPath, 'utf8');
62
// Proceed with accessing the files if needed
63
} else {
64
- this.logger.log('One or both files do not exist');
+ this.logger.log('Agent endpoint file does not exist');
65
throw new NotFoundException(`${agentEndpointPath} file do not exist `);
66
}
67
0 commit comments