Skip to content

Commit

Permalink
fix: output file name
Browse files Browse the repository at this point in the history
  • Loading branch information
aleortega committed Feb 15, 2024
1 parent 3bd16d3 commit 1d1620c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consumer-server/src/logic/message-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function createMessageHandlerComponent({

const filesToUpload = await lodGenerator.generate(base)

const resultTxt = filesToUpload.find((file) => file.endsWith('result.txt'))
const resultTxt = filesToUpload.find((file) => file.endsWith('output.txt'))
if (resultTxt) {
const lodGenerationResult = fs.readFileSync(resultTxt, 'utf-8')
logger.info('LOD generation result', { result: lodGenerationResult, entityId })
Expand Down

0 comments on commit 1d1620c

Please sign in to comment.