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)
|
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
|
* added `--ignore-missing` option to arangoimp
|
||||||
this option allows importing lines with less fields than specified in the CSV
|
this option allows importing lines with less fields than specified in the CSV
|
||||||
header line
|
header line
|
||||||
|
|
|
@ -359,10 +359,10 @@
|
||||||
if (error) {
|
if (error) {
|
||||||
arangoHelper.arangoError('Collection', 'Could not fetch properties');
|
arangoHelper.arangoError('Collection', 'Could not fetch properties');
|
||||||
} else {
|
} else {
|
||||||
|
var wfs = data.waitForSync;
|
||||||
if (data.journalSize) {
|
if (data.journalSize) {
|
||||||
var journalSize = data.journalSize / (1024 * 1024);
|
var journalSize = data.journalSize / (1024 * 1024);
|
||||||
var indexBuckets = data.indexBuckets;
|
var indexBuckets = data.indexBuckets;
|
||||||
var wfs = data.waitForSync;
|
|
||||||
|
|
||||||
tableContent.push(
|
tableContent.push(
|
||||||
window.modalView.createTextEntry(
|
window.modalView.createTextEntry(
|
||||||
|
|
Loading…
Reference in New Issue