Skip to content

Commit 3b6242f

Browse files
authored
fix(enricher): stop warning on expected query compilation failures (#2190)
1 parent 3a69a85 commit 3b6242f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

packages/enricher/src/parser-manager.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,7 @@ export class ParserManager {
132132
}
133133
this.queryCache.set(cacheKey, query);
134134
return query;
135-
} catch (err) {
136-
warn("Query compilation failed", err);
135+
} catch {
137136
this.failedQueries.add(cacheKey);
138137
return null;
139138
}

0 commit comments

Comments
 (0)