Skip to content

Commit

Permalink
Comply with lint
Browse files Browse the repository at this point in the history
  • Loading branch information
davidejensen committed Nov 18, 2024
1 parent dc36395 commit 7e87c69
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion consumer-server/src/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ export async function main(program: Lifecycle.EntryPointParameters<AppComponents
if (job.lods) {
await executeLODConversion(components, job.entity.entityId, job.lods)
} else {
await executeConversion(components, job.entity.entityId, job.contentServerUrls![0], job.force, job.animation)
await executeConversion(
components,

Check failure on line 43 in consumer-server/src/service.ts

View workflow job for this annotation

GitHub Actions / install

Replace `··components,·` with `components,`
job.entity.entityId,

Check failure on line 44 in consumer-server/src/service.ts

View workflow job for this annotation

GitHub Actions / install

Replace `················job.entity.entityId,·` with `··············job.entity.entityId,`
job.contentServerUrls![0],

Check failure on line 45 in consumer-server/src/service.ts

View workflow job for this annotation

GitHub Actions / install

Replace `················job.contentServerUrls![0],·` with `··············job.contentServerUrls![0],`
job.force,

Check failure on line 46 in consumer-server/src/service.ts

View workflow job for this annotation

GitHub Actions / install

Replace `················job.force,·` with `··············job.force,`
job.animation

Check failure on line 47 in consumer-server/src/service.ts

View workflow job for this annotation

GitHub Actions / install

Delete `··`
)
}
} finally {
components.metrics.decrement('ab_converter_running_conversion')
Expand Down

0 comments on commit 7e87c69

Please sign in to comment.