MCPcopy
hub / github.com/continuedev/continue / updateTimestamp

Method updateTimestamp

core/indexing/refreshIndex.ts:572–579  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

570 }
571
572 static async updateTimestamp() {
573 const db = await SqliteDb.get();
574 await db.run(
575 `UPDATE ${IndexLock.getLockTableName()} SET timestamp = ? where locked = ?`,
576 Date.now(),
577 true,
578 );
579 }
580
581 static async unlock() {
582 const db = await SqliteDb.get();

Callers 1

refreshCodebaseIndexMethod · 0.80

Calls 3

getLockTableNameMethod · 0.80
getMethod · 0.65
runMethod · 0.65

Tested by

no test coverage detected