Project

General

Profile

« Previous | Next » 

Revision 2734

Added by sgarg over 18 years ago

Changes in calls made to IndexingQueue class

View differences:

src/edu/ucsb/nceas/metacat/IndexingTimerTask.java
75 75
	    			String docid = rs.getString(1);
76 76
	    			String rev = rs.getString(2);
77 77
	    			
78
	    			IndexingQueue.getInstance().add(docid + "." + rev);
78
	    			IndexingQueue.getInstance().add(docid, rev);
79 79

  
80 80
	    			tableHasRows = rs.next();
81 81
	            }
src/edu/ucsb/nceas/metacat/DocumentImpl.java
2368 2368
        boolean useXMLIndex =
2369 2369
            (new Boolean(MetaCatUtil.getOption("usexmlindex"))).booleanValue();
2370 2370
        if (useXMLIndex) {
2371
            	IndexingQueue.getInstance().add(docid + "." + rev);
2371
            	IndexingQueue.getInstance().add(docid, rev);
2372 2372
        }
2373 2373
    }
2374 2374

  

Also available in: Unified diff