Skip to content
Snippets Groups Projects
Commit eadf7895 authored by Vincent Petry's avatar Vincent Petry
Browse files

Rename experimental to transactional file locking

parent 9be1d08c
No related branches found
No related tags found
No related merge requests found
...@@ -1025,14 +1025,14 @@ $CONFIG = array( ...@@ -1025,14 +1025,14 @@ $CONFIG = array(
/** /**
* Enables the EXPERIMENTAL file locking. * Enables transactional file locking.
* This is disabled by default as it is experimental. * This is disabled by default as it is still beta.
* *
* Prevents concurrent processes to access the same files * Prevents concurrent processes to access the same files
* at the same time. Can help prevent side effects that would * at the same time. Can help prevent side effects that would
* be caused by concurrent operations. * be caused by concurrent operations.
* *
* WARNING: EXPERIMENTAL * WARNING: BETA quality
*/ */
'filelocking.enabled' => false, 'filelocking.enabled' => false,
......
...@@ -533,9 +533,9 @@ if ($_['cronErrors']) { ...@@ -533,9 +533,9 @@ if ($_['cronErrors']) {
<ul> <ul>
<li> <li>
<?php if ($_['fileLockingEnabled']) { <?php if ($_['fileLockingEnabled']) {
p($l->t('Experimental File Lock is enabled.')); p($l->t('Transactional File Locking is enabled.'));
} else { } else {
p($l->t('Experimental File Lock is disabled.')); p($l->t('Transactional File Locking is disabled.'));
} ?> } ?>
</li> </li>
</ul> </ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment