aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-06 21:41:20 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-07-06 21:41:20 -0400
commit8d97d34d1016bd23eb97ab92f65beba1e31a8621 (patch)
tree06de9a3ec6632fee363cbfceaf6c21c44647af3a
parenteb313459d31186f785ad25e715a458ceab8d6049 (diff)
change text on library page
-rw-r--r--MediaBrowser.Server.Implementations/EntryPoints/Notifications/WebSocketNotifier.cs2
-rw-r--r--MediaBrowser.ServerApplication/ApplicationHost.cs5
2 files changed, 3 insertions, 4 deletions
diff --git a/MediaBrowser.Server.Implementations/EntryPoints/Notifications/WebSocketNotifier.cs b/MediaBrowser.Server.Implementations/EntryPoints/Notifications/WebSocketNotifier.cs
index 2264cc524..c5a93720c 100644
--- a/MediaBrowser.Server.Implementations/EntryPoints/Notifications/WebSocketNotifier.cs
+++ b/MediaBrowser.Server.Implementations/EntryPoints/Notifications/WebSocketNotifier.cs
@@ -6,7 +6,7 @@ using System.Linq;
namespace MediaBrowser.Server.Implementations.EntryPoints.Notifications
{
/// <summary>
- /// Sends out messages anytime a notification is added or udpated
+ /// Notifies clients anytime a notification is added or udpated
/// </summary>
public class WebSocketNotifier : IServerEntryPoint
{
diff --git a/MediaBrowser.ServerApplication/ApplicationHost.cs b/MediaBrowser.ServerApplication/ApplicationHost.cs
index 274a491be..8b02264e8 100644
--- a/MediaBrowser.ServerApplication/ApplicationHost.cs
+++ b/MediaBrowser.ServerApplication/ApplicationHost.cs
@@ -385,9 +385,8 @@ namespace MediaBrowser.ServerApplication
{
PageSize = 4096,
CacheSize = 4096,
- SyncMode = SynchronizationModes.Off,
- DataSource = dbPath,
- JournalMode = SQLiteJournalModeEnum.Wal
+ SyncMode = SynchronizationModes.Normal,
+ DataSource = dbPath
};
var connection = new SQLiteConnection(connectionstr.ConnectionString);