[Koha-bugs] [Bug 14993] New: rebuild_zebra.pl, when recreating Zebra-directory structure, mkdir doesn't fail/error/die

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Oct 9 12:19:23 CEST 2015


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=14993

            Bug ID: 14993
           Summary: rebuild_zebra.pl, when recreating Zebra-directory
                    structure, mkdir doesn't fail/error/die
 Change sponsored?: ---
           Product: Koha
           Version: master
          Hardware: All
                OS: All
            Status: NEW
          Severity: enhancement
          Priority: P5 - low
         Component: Searching
          Assignee: gmcharlt at gmail.com
          Reporter: olli-antti.kivilahti at jns.fi
        QA Contact: testopia at bugs.koha-community.org

This is due to implicit perl programming.
Avoid doing this!
    mkdir $bdir || die "Error $!";

TO REPLICATE:

1. rm -r /home/koha/koha-dev/var/lib/zebradb (or whatever your zebradb location
is)
2. run rebuild_zebra.pl -b -a -r -x -v
3. Observe how rebuild_zebra.pl tells that it has rebuilt all the missing
   directories.
4. cd /home/koha/koha-dev/var/lib/zebradb/biblios
5. No such directory???
6. You wait for several hours to reindex your zebradb to find that nothing
   works :(

AFTER THIS PATCH:

1. rm -r /home/koha/koha-dev/var/lib/zebradb (or whatever your zebradb location
is)
2. run rebuild_zebra.pl -b -a -r -x -v
3. Observe how rebuild_zebra.pl tells that it couldn't create missing
directories.

A (possibly) better fix would be to recreate the top two directories from the
path, but no point patching a dead horse, since ElasticSearch will be here soon
:)

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list