Disabling generating docs

This commit is contained in:
Paul Masurel
2019-07-18 09:36:57 +09:00
parent 94d0e52786
commit 0167151f5b
2 changed files with 3 additions and 4 deletions

View File

@@ -38,9 +38,8 @@ matrix:
# Linux
#- env: TARGET=aarch64-unknown-linux-gnu
#- env: TARGET=i686-unknown-linux-gnu
- env: TARGET=x86_64-unknown-linux-gnu CODECOV=1 UPLOAD_DOCS=1
- env: TARGET=x86_64-unknown-linux-gnu CODECOV=1 #UPLOAD_DOCS=1
# - env: TARGET=x86_64-unknown-linux-musl CODECOV=1
# OSX
#- env: TARGET=x86_64-apple-darwin
# os: osx

View File

@@ -556,7 +556,7 @@ impl IndexWriter {
//
// This will reach an end as the only document_sender
// was dropped with the index_writer.
for _ in document_receiver.clone() {}
for _ in document_receiver {}
Ok(self.committed_opstamp)
}
@@ -750,7 +750,7 @@ impl IndexWriter {
mod tests {
use super::super::operation::UserOperation;
use crate::collector::TopDocs;gi
use crate::collector::TopDocs;
use crate::directory::error::LockError;
use crate::error::*;
use crate::indexer::NoMergePolicy;