Skip to content

Commit

Permalink
Take into account 'ws' origin.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomek Muras committed Sep 7, 2023
1 parent ebeddec commit b3ba223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Moosh/Command/Generic/Report/ReportConcurrency.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ public function execute()
COUNT( id ) AS number_actions
FROM {logstore_standard_log}
WHERE timecreated >= $tsutcfrom AND timecreated < $tsutcto
AND origin = 'web'
AND origin IN ('web', 'ws')
GROUP BY period
) AS concurrent_users_report";
$results = $DB->get_records_sql($sql);
Expand Down

0 comments on commit b3ba223

Please sign in to comment.