[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

1.5.0/1.5.2 Subversion + Apache crash..

From: Naeem Akhtar <naeem.akhtar_at_gmail.com>
Date: Mon, 22 Sep 2008 19:27:26 -0700 (PDT)

On Windows 2003 (Service Pack 2), 3G memory, I have a simple script
that is causing Apache (2.2.9) to crash. Apache does not restart.
There is no other application running on the system. It sometimes
takes 2-3 days before the crash.

Though the same scripts crash Apache on 1.4.x release but Apache
restarts.

The error message in Apache error log :

This application has requested the Runtime to terminate it in an
unusual way.
Please contact the application's support team for more information.
[Fri Sep 12 19:23:26 2008] [crit] Parent: child process exited with
status 3 -- Aborting.

****

The script is (this script is being posted as sent to me - please
change the appropriate variable):

my $SVN="svn --username USERNAME --password PASSWORD";
my $UPDATE = "update";
my $COMMIT = "ci";

$COUNTER=0;

while ($COUNTER < 100000) {
print "count: $COUNTER \n";
system("$SVN $UPDATE sandbox2_1");
$exit_value = $? >> 8;

if ($exit_value != 0) {
}
my $FILE="sandbox2_1/hanoi.txt";
open(FD, ">>$FILE") || die "Cannot open $FILE";
print FD "New line from Hanoi\n";
close FD;

system("$SVN $COMMIT -m \"hanoi\" $FILE");
$exit_value = $? >> 8;
$COUNTER = $COUNTER + 1;
print "Exit Value: $exit_value \n";
print "-------------------------------- \n"
}

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: dev-help_at_subversion.tigris.org
Received on 2008-09-23 16:54:30 CEST

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.