[tuxdroid-svn] r5408 - software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-09-16 09:00:43
|
Author: remi
Date: 2009-09-16 11:00:30 +0200 (Wed, 16 Sep 2009)
New Revision: 5408
Modified:
software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/03_resourceUgcServer.py
Log:
* Fixed bug on ugc creations. 2 ugcs created in the same msec had a chance to have the same uuid.
Modified: software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/03_resourceUgcServer.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/03_resourceUgcServer.py 2009-09-16 08:43:30 UTC (rev 5407)
+++ software_suite_v3/smart-core/smart-server/trunk/resources/03_content_servers/03_resourceUgcServer.py 2009-09-16 09:00:30 UTC (rev 5408)
@@ -148,6 +148,7 @@
self.__ugcContainer, self.__ugcContainer.getLanguage(),
resourcesManager)
self.insertTemporaryServedUgcInContainer(ugcUrl)
+ time.sleep(0.015)
def removeGadgetsWithoutChildren(self):
"""Remove the gadgets without UGC children.
|