On Thu, 2007-04-26 at 06:20 -0600, Hardwick, David (AELE) wrote: > I am trying to unite Subversion with Bugzilla using scmbug release > 0-19-7 (and 0-19-9) but always get the following when pre-commit > executes: > > Error: Can't use an undefined value as a HASH reference > at /srv/svn/repos/test/hooks/lib/scmbug/Scmbug/Glue/Glue.pm line > 205. > > It appears any reference to $self->configuration()->( xxx ) in Glue.pm > generates this error. I know theat that read_configuration() is > seeing glue.conf.
Well, this makes little sense. Hmmmmmm http://bugzilla.mkgnu.net/show_bug.cgi?id=969 I suspect that in Glue.pm.in:process, the call to: $self->read_configuration( $glue_configuration_file ); passes a $glue_configuration_file variable that is actually an "undef". This variable comes in as a command-line argument. I suspect it hasn't been passed-in correctly -- as if there's something wrong in the way the pre-commit hook passed things in. Or the way things were read. This results in $self->configuration() to remain undefined which finally leads to this problem Perhaps you could help us debug things a little further ? What version of Subversion are you running ? _______________________________________________ scmbug-users mailing list [email protected] http://lists.mkgnu.net/cgi-bin/mailman/listinfo/scmbug-users
