diff --git a/lib/webservice/router/priceplan.js b/lib/webservice/router/priceplan.js
index 7980d9f..e6eaee3 100644
--- a/lib/webservice/router/priceplan.js
+++ b/lib/webservice/router/priceplan.js
@@ -35,9 +35,8 @@ function lookupCorrectPriceplan(storeId, originStoreId, recursiveLevel = 0) {
 
         const query = `
                 -- KOMODO MIGRATION EVO - PRICEPLAN - pageShouldBe
-                SELECT
-                    parent_id, priceplan_name
-                FROM stores
+                SELECT SQL_CACHE parent_id, priceplan_name
+                FROM stores USE INDEX (PRIMARY)
                 WHERE id = ?
                 LIMIT 1
             `.trim();