You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In many cases this is being caused by client pages (usually in layouts) using the ShoppingCartService to get an item count usually for display in the menubar.
ex.
a call to shoppingCartService.getItems()?.size()
getItems calls getShoppingCart() which in turn calls createShoppingCart() if a current cart is not found which creates the mystery carts.
add a scheduled task to reset the session id to a fake value and try to use these first before creating new carts.
The text was updated successfully, but these errors were encountered:
In many cases this is being caused by client pages (usually in layouts) using the ShoppingCartService to get an item count usually for display in the menubar.
ex.
a call to shoppingCartService.getItems()?.size()
getItems calls getShoppingCart() which in turn calls createShoppingCart() if a current cart is not found which creates the mystery carts.
add a scheduled task to reset the session id to a fake value and try to use these first before creating new carts.
The text was updated successfully, but these errors were encountered: