From 24fb3d999c32b28e6a32783072688813ba0b8f91 Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Mon, 27 May 2019 13:34:50 +0200 Subject: [PATCH] MOBILE-3039 core: Don't force WS queue --- src/classes/site.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/classes/site.ts b/src/classes/site.ts index 6db77a1f8..afafeada4 100644 --- a/src/classes/site.ts +++ b/src/classes/site.ts @@ -191,8 +191,7 @@ interface RequestQueueItem { export class CoreSite { static REQUEST_QUEUE_DELAY = 50; // Maximum number of miliseconds to wait before processing the queue. static REQUEST_QUEUE_LIMIT = 10; // Maximum number of requests allowed in the queue. - // @todo Set REQUEST_QUEUE_FORCE_WS to false before the release. - static REQUEST_QUEUE_FORCE_WS = true; // Use "tool_mobile_call_external_functions" even for calling a single function. + static REQUEST_QUEUE_FORCE_WS = false; // Use "tool_mobile_call_external_functions" even for calling a single function. // Constants for cache update frequency. static FREQUENCY_USUALLY = 0;