From: Johannes Schindelin <hidden> Date: 2016-06-15 22:42:34
This patch defines $state->{prependdir} as the empty string, so that
quite a few warnings are avoided.
Signed-off-by: Johannes Schindelin <redacted>
---
I still get this warning:
closing dbh with active statement handles
git-cvsserver.perl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
@@ -81,7 +81,7 @@ ######################################### $state holds all the bits of information the clients sends us that could# potentially be useful when it comes to actually _doing_ something.-my$state={};+my$state={prependdir=>''};$log->info("--------------- STARTING -----------------");my$TEMP_DIR=tempdir(CLEANUP=>1);
From: Martin Langhoff (CatalystIT) <hidden> Date: 2016-06-15 22:42:34
Johannes Schindelin wrote:
This patch defines $state->{prependdir} as the empty string, so that
quite a few warnings are avoided.
Ack.
I still get this warning:
closing dbh with active statement handles
Ack to that too. Perhaps an END block would help? A quick check of man
DBI tells me that $dbh->CachedKids will be a hashref where the values
are refs to the cached statement handles.
IMHO it's a DBI bug -- statement handles only referenced by
$dbh->CachedKids should cleanup silently. prepare_cached() is a
convenience method so that you _don't_ have to keep track of the handles
manually. Forcing a manual cleanup throws a good part of the convenience
out.
cheers,
martin
--
-----------------------------------------------------------------------
Martin @ Catalyst .Net .NZ Ltd, PO Box 11-053, Manners St, Wellington
WEB: http://catalyst.net.nz/ PHYS: Level 2, 150-154 Willis St
OFFICE: +64(4)916-7224 MOB: +64(21)364-017
Make things as simple as possible, but no simpler - Einstein
-----------------------------------------------------------------------
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:42:34
Hi,
On Tue, 25 Jul 2006, Martin Langhoff (CatalystIT) wrote:
Johannes Schindelin wrote:
quoted
I still get this warning:
closing dbh with active statement handles
Ack to that too. Perhaps an END block would help?
Since my BASIC days on a VC-20 (no, not the airplane), I hardly used an
END statement ;-) Well, maybe in that Pascal course, but not in Perl,
anyway. So, I do not understand...
A quick check of man DBI tells me that $dbh->CachedKids will be a
hashref where the values are refs to the cached statement handles.
IMHO it's a DBI bug -- statement handles only referenced by $dbh->CachedKids
should cleanup silently. prepare_cached() is a convenience method so that you
_don't_ have to keep track of the handles manually. Forcing a manual cleanup
throws a good part of the convenience out.
From: Martin Langhoff <hidden> Date: 2016-06-15 22:42:34
On 7/25/06, Johannes Schindelin [off-list ref] wrote:
quoted
Ack to that too. Perhaps an END block would help?
Since my BASIC days on a VC-20 (no, not the airplane), I hardly used an
END statement ;-) Well, maybe in that Pascal course, but not in Perl,
anyway. So, I do not understand...
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:42:34
Hi,
On Tue, 25 Jul 2006, Martin Langhoff wrote:
On 7/25/06, Johannes Schindelin [off-list ref] wrote:
quoted
quoted
Ack to that too. Perhaps an END block would help?
Since my BASIC days on a VC-20 (no, not the airplane), I hardly used an
END statement ;-) Well, maybe in that Pascal course, but not in Perl,
anyway. So, I do not understand...
From: Mike Galbraith <hidden> Date: 2016-06-15 22:42:34
Greetings,
Having finally acquired DSL (only 400kbps, but at least I'm in the
twentieth century [not typo]), I decided to finally give git a try. I
installed git-1.4.1.1-1, and armed myself with Jeff's how-to. I didn't
get far before git saved me the trouble of truly testing my resolve :)
-Mike
git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6
error: git-clone-pack: unable to read from git-index-pack
error: git-index-pack died with error code 128
clone-pack from 'git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git' failed
From: Mike Galbraith <hidden> Date: 2016-06-15 22:42:34
On Tue, 2006-07-25 at 14:13 +0200, Mike Galbraith wrote:
Greetings,
Having finally acquired DSL (only 400kbps, but at least I'm in the
twentieth century [not typo]), I decided to finally give git a try. I
installed git-1.4.1.1-1, and armed myself with Jeff's how-to. I didn't
get far before git saved me the trouble of truly testing my resolve :)
-Mike
git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6
Oops, missed a line.
fatal: packfile '/usr/local/src/tmp/linux-2.6/.git/objects/pack/tmp-nE9k3G' SHA1 mismatch
error: git-clone-pack: unable to read from git-index-pack
error: git-index-pack died with error code 128
clone-pack from 'git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git' failed
From: Johannes Schindelin <hidden> Date: 2016-06-15 22:42:34
Hi,
On Tue, 25 Jul 2006, Mike Galbraith wrote:
On Tue, 2006-07-25 at 14:13 +0200, Mike Galbraith wrote:
quoted
Greetings,
Having finally acquired DSL (only 400kbps, but at least I'm in the
twentieth century [not typo]), I decided to finally give git a try. I
installed git-1.4.1.1-1, and armed myself with Jeff's how-to. I didn't
get far before git saved me the trouble of truly testing my resolve :)
-Mike
git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6
Oops, missed a line.
fatal: packfile '/usr/local/src/tmp/linux-2.6/.git/objects/pack/tmp-nE9k3G' SHA1 mismatch
quoted
error: git-clone-pack: unable to read from git-index-pack
error: git-index-pack died with error code 128
clone-pack from 'git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git' failed
From: Ryan Anderson <hidden> Date: 2016-06-15 22:42:34
On Tue, Jul 25, 2006 at 04:57:39PM +0200, Johannes Schindelin wrote:
On Tue, 25 Jul 2006, Mike Galbraith wrote:
quoted
On Tue, 2006-07-25 at 14:13 +0200, Mike Galbraith wrote:
quoted
Greetings,
Having finally acquired DSL (only 400kbps, but at least I'm in the
twentieth century [not typo]), I decided to finally give git a try. I
installed git-1.4.1.1-1, and armed myself with Jeff's how-to. I didn't
get far before git saved me the trouble of truly testing my resolve :)
-Mike
git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6
Oops, missed a line.
fatal: packfile '/usr/local/src/tmp/linux-2.6/.git/objects/pack/tmp-nE9k3G' SHA1 mismatch
quoted
error: git-clone-pack: unable to read from git-index-pack
error: git-index-pack died with error code 128
clone-pack from 'git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git' failed
Or do your initial clone as:
git clone rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git linux-2.6
cd linux-2.6 && sed -i -e 's/rsync/git/g' .git/remotes/origin
(The preferred thing is for the method you used to work, but the above
will avoid the bug for the moment.)
--
Ryan Anderson
sometimes Pug Majere