1
0
Fork 0

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:
Heiko 2017-12-28 12:25:31 +01:00 committed by Max Neunhöffer
parent 3b5a397241
commit 953e41b5e2
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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(