From 4d92f4a3ce78b93a80ce7908e734b5eee4ae8b0e Mon Sep 17 00:00:00 2001 From: KernelDeimos Date: Mon, 15 Sep 2025 04:28:51 -0400 Subject: [PATCH] fix: missing span name ("fn is not defined" error) --- src/backend/src/filesystem/FSNodeContext.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/src/filesystem/FSNodeContext.js b/src/backend/src/filesystem/FSNodeContext.js index 38df8973b..311e045ff 100644 --- a/src/backend/src/filesystem/FSNodeContext.js +++ b/src/backend/src/filesystem/FSNodeContext.js @@ -290,7 +290,7 @@ module.exports = class FSNodeContext { */ async fetchEntry (fetch_entry_options = {}) { if ( this.fetching !== null ) { - await Context.get('services').get('traceService').spanify(async () => { + await Context.get('services').get('traceService').spanify('fetching', async () => { // ???: does this need to be double-checked? I'm not actually sure... if ( this.fetching === null ) return; await this.fetching;