diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-01-04 09:18:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-04 09:18:31 +0100 |
commit | 2d22633568ce2cc6e3246a61d265852b793642c8 (patch) | |
tree | 2b354d7125cef7608de661f6f68e0d43958a8408 /core | |
parent | a1f9ed1d7d9e953833850a14405687e115bf0b82 (diff) | |
parent | 248e824f48c50e2334875766cf90d4973dbb084a (diff) | |
download | nextcloud-server-2d22633568ce2cc6e3246a61d265852b793642c8.tar.gz nextcloud-server-2d22633568ce2cc6e3246a61d265852b793642c8.zip |
Merge pull request #13313 from nextcloud/feature/remove-outdated-caches
Remove check for outdated caches
Diffstat (limited to 'core')
-rw-r--r-- | core/js/setupchecks.js | 12 | ||||
-rw-r--r-- | core/js/tests/specs/setupchecksSpec.js | 13 |
2 files changed, 0 insertions, 25 deletions
diff --git a/core/js/setupchecks.js b/core/js/setupchecks.js index 343b676080a..cca3707acdf 100644 --- a/core/js/setupchecks.js +++ b/core/js/setupchecks.js @@ -159,18 +159,6 @@ type: OC.SetupChecks.MESSAGE_TYPE_INFO }); } - if (data.outdatedCaches.length > 0) { - data.outdatedCaches.forEach(function(element){ - messages.push({ - msg: t( - 'core', - '{name} below version {version} is installed, for stability and performance reasons it is recommended to update to a newer {name} version.', - element - ), - type: OC.SetupChecks.MESSAGE_TYPE_WARNING - }) - }); - } if(!data.hasWorkingFileLocking) { messages.push({ msg: t('core', 'Transactional file locking is disabled, this might lead to issues with race conditions. Enable "filelocking.enabled" in config.php to avoid these problems. See the <a target="_blank" rel="noreferrer noopener" href="{docLink}">documentation ↗</a> for more information.', {docLink: oc_defaults.docPlaceholderUrl.replace('PLACEHOLDER', 'admin-transactional-locking')}), diff --git a/core/js/tests/specs/setupchecksSpec.js b/core/js/tests/specs/setupchecksSpec.js index 05178a3e5cc..6ea7d812d9a 100644 --- a/core/js/tests/specs/setupchecksSpec.js +++ b/core/js/tests/specs/setupchecksSpec.js @@ -204,7 +204,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -255,7 +254,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -307,7 +305,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -357,7 +354,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -405,7 +401,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -453,7 +448,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -503,7 +497,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -551,7 +544,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: false, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -599,7 +591,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -668,7 +659,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -717,7 +707,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -766,7 +755,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: true, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 @@ -815,7 +803,6 @@ describe('OC.SetupChecks tests', function() { isSettimelimitAvailable: true, hasFreeTypeSupport: false, missingIndexes: [], - outdatedCaches: [], cronErrors: [], cronInfo: { diffInSeconds: 0 |