Remove unused configuration

This commit is contained in:
Unrud 2018-08-18 12:56:39 +02:00
parent 8281769edf
commit 24f835a2a1
2 changed files with 0 additions and 6 deletions

4
config
View File

@ -99,10 +99,6 @@
# Folder for storing local collections, created if not present # Folder for storing local collections, created if not present
#filesystem_folder = /var/lib/radicale/collections #filesystem_folder = /var/lib/radicale/collections
# Lock the storage. Never start multiple instances of Radicale or edit the
# storage externally while Radicale is running if disabled.
#filesystem_locking = True
# Delete sync token that are older (seconds) # Delete sync token that are older (seconds)
#max_sync_token_age = 2592000 #max_sync_token_age = 2592000

View File

@ -44,8 +44,6 @@ class TestBaseAuthRequests(BaseTest):
self.configuration["storage"]["filesystem_folder"] = self.colpath self.configuration["storage"]["filesystem_folder"] = self.colpath
# Disable syncing to disk for better performance # Disable syncing to disk for better performance
self.configuration["internal"]["filesystem_fsync"] = "False" self.configuration["internal"]["filesystem_fsync"] = "False"
# Required on Windows, doesn't matter on Unix
self.configuration["storage"]["filesystem_close_lock_file"] = "True"
# Set incorrect authentication delay to a very low value # Set incorrect authentication delay to a very low value
self.configuration["auth"]["delay"] = "0.002" self.configuration["auth"]["delay"] = "0.002"