diff options
author | Alex Pott <alex.a.pott@googlemail.com> | 2022-08-11 13:02:30 +0100 |
---|---|---|
committer | Alex Pott <alex.a.pott@googlemail.com> | 2022-08-11 13:02:30 +0100 |
commit | 6a1855c2e20d67a314b09dbb9915d0ea5304be79 (patch) | |
tree | 349b39d5340021032538f18c8d1f740a10331553 /core/modules/jsonapi/jsonapi.install | |
parent | 61e1feccf856bce9bf3203f264bee20007c59fcc (diff) | |
download | drupal-6a1855c2e20d67a314b09dbb9915d0ea5304be79.tar.gz drupal-6a1855c2e20d67a314b09dbb9915d0ea5304be79.zip |
Issue #3290810 by Spokje, catch, dww, longwave, alexpott: Remove updates added prior to 9.4.0 (9.4.4 for ckeditor) and add 9.4.0 database dumps
Diffstat (limited to 'core/modules/jsonapi/jsonapi.install')
-rw-r--r-- | core/modules/jsonapi/jsonapi.install | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/core/modules/jsonapi/jsonapi.install b/core/modules/jsonapi/jsonapi.install index 80009b525a46..48c0ed89aeaa 100644 --- a/core/modules/jsonapi/jsonapi.install +++ b/core/modules/jsonapi/jsonapi.install @@ -80,19 +80,5 @@ function jsonapi_requirements($phase) { * Implements hook_update_last_removed(). */ function jsonapi_update_last_removed() { - return 8701; -} - -/** - * Set values for maintenance_header_retry_seconds min and max. - * - * @see https://www.drupal.org/node/3247453 - */ -function jsonapi_update_9401() { - $config = \Drupal::configFactory()->getEditable('jsonapi.settings'); - $config->set('maintenance_header_retry_seconds', [ - 'min' => 5, - 'max' => 10, - ]); - $config->save(TRUE); + return 9401; } |