mirror of https://gitee.com/bigwinds/arangodb
Bug fix 3.3/issue 4152 ui wfs rocksdb (#4154)
* ui displayed wrong wfs property for a collection while using rocksdb storage engine * changelog
This commit is contained in:
parent
3b5a397241
commit
953e41b5e2
|
@ -1,6 +1,8 @@
|
|||
v3.3.1 (XXXX-XX-XX)
|
||||
-------------------
|
||||
|
||||
* UI: displayed wrong wfs property for a collection when using rocksdb as storage engine
|
||||
|
||||
* added `--ignore-missing` option to arangoimp
|
||||
this option allows importing lines with less fields than specified in the CSV
|
||||
header line
|
||||
|
|
|
@ -359,10 +359,10 @@
|
|||
if (error) {
|
||||
arangoHelper.arangoError('Collection', 'Could not fetch properties');
|
||||
} else {
|
||||
var wfs = data.waitForSync;
|
||||
if (data.journalSize) {
|
||||
var journalSize = data.journalSize / (1024 * 1024);
|
||||
var indexBuckets = data.indexBuckets;
|
||||
var wfs = data.waitForSync;
|
||||
|
||||
tableContent.push(
|
||||
window.modalView.createTextEntry(
|
||||
|
|
Loading…
Reference in New Issue