[Laszlo-checkins] r8013 - openlaszlo/branches/devildog/test/lfc/data

hqm@openlaszlo.org hqm at openlaszlo.org
Wed Feb 13 08:35:33 PST 2008


Author: hqm
Date: 2008-02-13 08:35:31 -0800 (Wed, 13 Feb 2008)
New Revision: 8013

Modified:
   openlaszlo/branches/devildog/test/lfc/data/httpsequence.jsp
Log:
Change 20080213-hqm-u by hqm at badtzmaru.local on 2008-02-13 11:34:50 EST
    in /Users/hqm/openlaszlo/devildog
    for http://svn.openlaszlo.org/openlaszlo/branches/devildog

Summary: fix race condition in data test

New Features:

Bugs Fixed:

Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:
    
make the servlet single threaded to avoid race condition


Tests:



Modified: openlaszlo/branches/devildog/test/lfc/data/httpsequence.jsp
===================================================================
--- openlaszlo/branches/devildog/test/lfc/data/httpsequence.jsp	2008-02-13 15:30:09 UTC (rev 8012)
+++ openlaszlo/branches/devildog/test/lfc/data/httpsequence.jsp	2008-02-13 16:35:31 UTC (rev 8013)
@@ -1,6 +1,6 @@
-<%@ page import="java.util.*" %><%@ page import="java.io.*" %><%@ page contentType="text/xml; charset=UTF-8" %><?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
+<%@ page import="java.util.*" %><%@ page import="java.io.*" %><%@ page contentType="text/xml; charset=UTF-8" %><?xml version='1.0' encoding='UTF-8' standalone='yes' ?><%@ page isThreadSafe="false" %>
 <response><%
-/* Copyright 2001-2006 Laszlo Systems, Inc.  All Rights Reserved.              */
+/* Copyright 2001-2006, 2008 Laszlo Systems, Inc.  All Rights Reserved.              */
 Integer seq = (Integer) session.getAttribute("seq");
 if (seq ==null) {
     seq = new Integer(0);



More information about the Laszlo-checkins mailing list