Bugs item #733628, was opened at 2003-05-06 22:43
Message generated for change (Comment added) made by ianbicking
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=104866&aid=733628&group_id=4866
Category: WebKit
Group: None
>Status: Open
Resolution: None
Priority: 5
Submitted By: Michael Casaday (mcasaday)
Assigned to: Nobody/Anonymous (nobody)
Summary: MakeAppWorkDir.py and AppServer shell script incompatible
Initial Comment:
Using MakeAppWorkDir.py to create a working directory
precludes the usage of the following command to
shutdown the application server using:
$MY_WORKING_DIR/AppServer stop
This is because under these circumstances
appserverpid.txt is written to $MY_WORKING_DIR but it
is read from
$WEBWARE_INSTALL_DIR/WebKit/appserverpid.txt
Here is how appserverpid.txt is created:
pidfile = open(os.path.join(self._serverSidePath,
"appserverpid.txt"),"w")
Here is appserverpid.txt is opened:
pidfile = os.path.join(os.path.dirname(__file__),
"appserverpid.txt")
Shouldn't both use self._serverSidePath?
----------------------------------------------------------------------
>Comment By: Ian Bicking (ianbicking)
Date: 2003-05-07 12:56
Message:
Logged In: YES
user_id=210337
I'd forgotten all about the bug myself (we have docs on
known bugs? :)
It's still a valid and current bug that should be fixed, so
I'm reopening it.
----------------------------------------------------------------------
Comment By: Michael Casaday (mcasaday)
Date: 2003-05-07 12:48
Message:
Logged In: YES
user_id=270148
Sorry, this is a known bug. I did a search here in the bug
tracker to make sure I wasn't submitting a repeat but I forgot
to check the "Known Bugs" subsection of the "WebKit Future
Work" doc, which describes this issue.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=104866&aid=733628&group_id=4866
|