Ignore:
Timestamp:
2005-09-26T17:07:05+12:00 (19 years ago)
Author:
kjdon
Message:

made all index/gdbm db paths use indexstem instead of cluster_name

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl3/src/java/org/greenstone/gsdl3/service/GS2MGPPSearch.java

    r10093 r10651  
    3737{
    3838    protected GDBMWrapper gdbm_src = null;
     39    protected String index_stem = null;
    3940
    4041    /** constructor */
     
    5758
    5859        // Open GDBM database for querying
    59     String gdbm_db_file = GSFile.GDBMDatabaseFile(this.site_home, this.cluster_name);
     60    String gdbm_db_file = GSFile.GDBMDatabaseFile(this.site_home, this.cluster_name, this.index_stem);
    6061    if (!this.gdbm_src.openDatabase(gdbm_db_file, GDBMWrapper.READER)) {
    6162        System.err.println("Error: Could not open GDBM database!");
Note: See TracChangeset for help on using the changeset viewer.