Release 3.2.3 - See CHANGELOG.md

This commit is contained in:
Dave Conroy
2022-04-21 15:46:27 -07:00
parent c04eec7661
commit 5a4cac2cee
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
## 3.2.3 2022-04-21 <dave at tiredofit dot ca>
### Changed
- Fix for bucket / db name InfluxDB 1.xx
- Minor aesthetics, spacing, spelling
## 3.2.2 2022-04-21 <dave at tiredofit dot ca> ## 3.2.2 2022-04-21 <dave at tiredofit dot ca>
### Changed ### Changed

View File

@@ -102,7 +102,7 @@ backup_influx() {
1 ) 1 )
for db in ${db_names}; do for db in ${db_names}; do
pre_dbbackup pre_dbbackup
if [ "${db}" != "justbackupeverything" ] ; then bucket="-bucket $db" ; else db=all ; fi if [ "${db}" != "justbackupeverything" ] ; then bucket="-db ${db}" ; else db=all ; fi
target=influx_${db}_${DB_HOST#*//}_${now} target=influx_${db}_${DB_HOST#*//}_${now}
compression compression
print_notice "Dumping Influx database: '${db}'" print_notice "Dumping Influx database: '${db}'"