0
0
Fork 0

quick hack to disable safe batches in fts

This commit is contained in:
Marty Schoch 2017-12-14 17:19:50 -05:00
parent eb4ef2278e
commit 6ab27e4afa
1 changed files with 4 additions and 0 deletions

View File

@ -79,6 +79,10 @@ func NewScorch(storeName string, config map[string]interface{}, analysisQueue *i
if ok {
rv.readOnly = ro
}
// hack for now to disable safe batches in FTS
if storeName == "moss" {
rv.unsafeBatch = true
}
return rv, nil
}