Skip to content

Commit

Permalink
MDL-79618 block_timeline: Set web services to read-only
Browse files Browse the repository at this point in the history
Set the web service functions core_calendar_get_action_events_by_timesort
and core_calendar_get_action_events_by_timesort to use read only
sessions. These functions can hold long session locks
and read-only sessions will prevent them blocking other requests.
  • Loading branch information
marcusgreen authored and catalyst-marcus-green committed Oct 27, 2023
1 parent 859df15 commit ebe2c3c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions lib/db/services.php
Expand Up @@ -228,6 +228,7 @@
'capabilities' => 'moodle/calendar:manageentries, moodle/calendar:manageownentries, moodle/calendar:managegroupentries',
'ajax' => true,
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
'readonlysession' => true,
),
'core_calendar_get_action_events_by_course' => array(
'classname' => 'core_calendar_external',
Expand Down Expand Up @@ -669,6 +670,7 @@
'type' => 'read',
'ajax' => true,
'services' => array(MOODLE_OFFICIAL_MOBILE_SERVICE),
'readonlysession' => true,
),
'core_course_get_recent_courses' => array(
'classname' => 'core_course_external',
Expand Down
2 changes: 1 addition & 1 deletion version.php
Expand Up @@ -29,7 +29,7 @@

defined('MOODLE_INTERNAL') || die();

$version = 2023102700.00; // YYYYMMDD = weekly release date of this DEV branch.
$version = 2023102700.01; // YYYYMMDD = weekly release date of this DEV branch.
// RR = release increments - 00 in DEV branches.
// .XX = incremental changes.
$release = '4.4dev (Build: 20231027)'; // Human-friendly version name
Expand Down

0 comments on commit ebe2c3c

Please sign in to comment.