Skip to content

Commit e600221

Browse files
Jack FrainJack Frain
authored andcommitted
fix(cu): linting
1 parent 144d15f commit e600221

File tree

10 files changed

+472
-484
lines changed

10 files changed

+472
-484
lines changed

servers/cu/src/app.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export const server = pipeP(
3838
logger('Currently Pending readState operations: %j', domain.apis.pendingReadStates())
3939
}, config.MEM_MONITOR_INTERVAL)
4040
memMonitor.unref()
41-
4241

4342
if (config.PROCESS_MEMORY_CACHE_CHECKPOINT_INTERVAL) {
4443
logger('Setting up Interval to Checkpoint all Processes every %s', ms(config.PROCESS_MEMORY_CACHE_CHECKPOINT_INTERVAL))

servers/cu/src/bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ export const createApis = async (ctx) => {
584584
ctx.logger('Error in loadEvaluation worker while dumping evaluations', e)
585585
throw new Error(`Error in loadEvaluation worker: ${e}`)
586586
})
587-
)
587+
)
588588
)
589589

590590
return { metrics, stats, pendingReadStates, readState, dryRun, readResult, readResults, readCronResults, checkpointWasmMemoryCache, healthcheck, dumpEvaluations }

servers/cu/src/effects/ao-evaluation.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ export function saveEvaluationWith ({ DISABLE_PROCESS_EVALUATION_CACHE, db, logg
173173
const statements = []
174174

175175
if (!DISABLE_PROCESS_EVALUATION_CACHE) {
176-
177176
// If we have a directory and bucket, we need to save the evaluation to the directory, not sqlite
178177
if (EVALUATION_RESULT_DIR && EVALUATION_RESULT_BUCKET) {
179178
statements.push({
@@ -198,7 +197,6 @@ export function saveEvaluationWith ({ DISABLE_PROCESS_EVALUATION_CACHE, db, logg
198197
]
199198
})
200199
} else {
201-
202200
statements.push({
203201
sql: `
204202
INSERT OR IGNORE INTO ${EVALUATIONS_TABLE}

0 commit comments

Comments
 (0)