Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
aloftus23 committed Apr 29, 2024
1 parent 333857a commit ad54e8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/tasks/scanExecution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async function startDesiredTasks(
desiredCount: integer,
shodanApiKeyList: string[] = []
) {
let queueUrl = QUEUE_URL + `${scanType}-queue`;
const queueUrl = QUEUE_URL + `${scanType}-queue`;
try {
// ECS can only start 10 tasks at a time. Split up into batches
let batchSize = 10;
Expand Down
2 changes: 1 addition & 1 deletion backend/src/tools/run-scanExecution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const ORG_LIST = ['DHS', 'DOI'];
const QUEUE = `staging-${SCAN_TYPE}-queue`;
const API_KEY_LIST = '';

for (let org of ORG_LIST) {
for (const org of ORG_LIST) {
const message = {
scriptType: SCAN_TYPE,
org: org
Expand Down

0 comments on commit ad54e8b

Please sign in to comment.