From 653065363639ebb59bcbbd682c6a0249dd475f11 Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Thu, 17 Aug 2006 03:02:06 +0000 Subject: Wait for PS to start again to fix race issues with activation --- diff --git a/shell/session/Session.py b/shell/session/Session.py index 752e6ee..92f10b6 100644 --- a/shell/session/Session.py +++ b/shell/session/Session.py @@ -54,6 +54,12 @@ class Session: process.start() PresenceService.start() + bus = dbus.Bus() + ret = False + # Wait for the presence service to start up before continuing + while not ret: + ret = dbus.dbus_bindings.bus_name_has_owner(bus._connection, PresenceService.DBUS_SERVICE) + time.sleep(0.2) process = MatchboxProcess() process.start() -- cgit v0.9.1