Mercurial Hosting > luan
diff src/goodjava/lucene/backup/BackupIndexWriter.java @ 1673:1b9f9fdb3b41
remove backup password
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 28 May 2022 21:00:30 -0600 |
parents | 8dd8c556c449 |
children | af18eacf187c |
line wrap: on
line diff
--- a/src/goodjava/lucene/backup/BackupIndexWriter.java Thu May 26 21:10:02 2022 -0600 +++ b/src/goodjava/lucene/backup/BackupIndexWriter.java Sat May 28 21:00:30 2022 -0600 @@ -30,19 +30,17 @@ private static final Logger logger = LoggerFactory.getLogger(BackupIndexWriter.class); public static String[] backupDomains; private final String name; - private final String password; private final File dir; private boolean isSyncPending = false; private final ExecutorService exec = Executors.newSingleThreadExecutor(); - public BackupIndexWriter(LuceneIndexWriter indexWriter,File logDir,long logTime,String name,String password) + public BackupIndexWriter(LuceneIndexWriter indexWriter,File logDir,long logTime,String name) throws IOException { super(indexWriter,logDir,logTime); if( backupDomains == null ) throw new RuntimeException("must set backupDomains"); this.name = name; - this.password = password; File f = new File(System.getProperty("java.io.tmpdir")); dir = new File(f,"goodjava.lucene/"+name); IoUtils.mkdirs(dir); @@ -139,7 +137,7 @@ for( String backupDomain : backupDomains ) { RpcClient rpc = BackupServer.rpcClient(backupDomain); try { - RpcCall call = new RpcCall("login",name,password); + RpcCall call = new RpcCall("login",name); rpc.write(call); rpc.read(); call = new RpcCall("check",logInfo);