Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 67768 | Differences between
and this patch

Collapse All | Expand All

(-)beagled/KopeteQueryable/KopeteQueryable.cs (-2 / +3 lines)
Lines 74-81 namespace Beagle.Daemon.KopeteQueryable Link Here
74
74
75
			if (!Inotify.Enabled) {
75
			if (!Inotify.Enabled) {
76
				Scheduler.Task task = Scheduler.TaskFromHook (new Scheduler.TaskHook (CrawlHook));
76
				Scheduler.Task task = Scheduler.TaskFromHook (new Scheduler.TaskHook (CrawlHook));
77
                                task.Tag = "Crawling ~/.kopete/logs to find new logfiles";
77
				task.Tag = "Crawling ~/.kopete/logs to find new logfiles";
78
                                ThisScheduler.Add (task);
78
				task.Source = this;
79
				ThisScheduler.Add (task);
79
			}
80
			}
80
81
81
			stopwatch.Stop ();
82
			stopwatch.Stop ();
(-)beagled/IndexSynchronization.cs (+2 lines)
Lines 68-79 namespace Beagle.Daemon { Link Here
68
			task.Tag = "Synchronize Indexes";
68
			task.Tag = "Synchronize Indexes";
69
			task.Priority = Scheduler.Priority.Delayed;
69
			task.Priority = Scheduler.Priority.Delayed;
70
			task.TriggerTime = DateTime.Now.AddMinutes (sync_interval_in_minutes);
70
			task.TriggerTime = DateTime.Now.AddMinutes (sync_interval_in_minutes);
71
			task.Source = synchronization_lock;
71
			Scheduler.Global.Add (task);
72
			Scheduler.Global.Add (task);
72
73
73
			// Set up the shutdown synchronization task
74
			// Set up the shutdown synchronization task
74
			task = Scheduler.TaskFromHook (new Scheduler.TaskHook (ShutdownHook));
75
			task = Scheduler.TaskFromHook (new Scheduler.TaskHook (ShutdownHook));
75
			task.Tag = "Synchronize Indexes on Shutdown";
76
			task.Tag = "Synchronize Indexes on Shutdown";
76
			task.Priority = Scheduler.Priority.Shutdown;
77
			task.Priority = Scheduler.Priority.Shutdown;
78
			task.Source = synchronization_lock;
77
			Scheduler.Global.Add (task);
79
			Scheduler.Global.Add (task);
78
		}
80
		}
79
81

Return to bug 67768