From 0bc06eb279397db14c3fc7f4b07d7b2122b3739b Mon Sep 17 00:00:00 2001 From: Leigh B Stoller Date: Thu, 6 Jan 2011 16:50:43 -0700 Subject: [PATCH] Skip the log table; takes too long. --- db/dbcheck.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/db/dbcheck.in b/db/dbcheck.in index e40969a48..cf78f35e3 100755 --- a/db/dbcheck.in +++ b/db/dbcheck.in @@ -1,4 +1,4 @@ -#!/usr/bin/perl -wT +#!/usr/bin/perl -w # # EMULAB-COPYRIGHT # Copyright (c) 2000-2004 University of Utah and the Flux Group. @@ -91,6 +91,9 @@ if (! ($query_result = DBQueryWarn("show tables"))) { } while (my ($table) = $query_result->fetchrow()) { + next + if ($table eq "log"); + print "Checking $table ...\n"; # virt_routes is too big for this. -- GitLab