-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix warning Trying to add two strings in DataTable\Row::sumRowArray #21420
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can confirm all of the initial exception, the ProxySite plugin creating the warning and the PR fixing it 👍
Will update the changed fixture and merge after final check the test is also affected by the problem.
Is it a valid scenario that the site ID can be |
It should never be below zero, in this case the Will have a deeper look into the inner working why exactly that plugin highlights this issue, my guess is some shenanigans with API-Call-Interception, but it is not the actual cause of the problem. |
@@ -342,5 +342,16 @@ | |||
</result> | |||
</reportMetadata> | |||
<reportTotal> | |||
<nb_visits>9</nb_visits> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice this fixed a bug 👍
Description:
fixes DEV-17267 #21373
In the stack trace you can see this happens with label "-2". The evolution metric fails with an exception because the site -2 does not exist when trying to determine the currency symbol.
I reproduced it multiple times with this patch and without. With this patch the scheduled report works but not without.
Review