We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34b28a3 commit 8539580Copy full SHA for 8539580
1 file changed
apps/meteor/app/lib/server/lib/deprecationWarningLogger.ts
@@ -31,8 +31,7 @@ export type DeprecationLoggerNextPlannedVersion = '9.0.0';
31
// tests intentionally exercise DDP methods through the `/v1/method.call/:method`
32
// proxy and via streamer paths; for those runs we set `TEST_MODE_API=true` so
33
// the throw is suppressed but the warning is still logged.
34
-const shouldThrowOnDeprecation = (): boolean =>
35
- process.env.TEST_MODE === 'true' && process.env.TEST_MODE_API !== 'true';
+const shouldThrowOnDeprecation = (): boolean => process.env.TEST_MODE === 'true' && process.env.TEST_MODE_API !== 'true';
36
37
export const apiDeprecationLogger = ((logger) => {
38
return {
0 commit comments