[BugFix] Docker InfluxDB cannot be enabled (#4483)

Motivation:

This patch fixes the bug that there's no chance to enable the InfluxDB storage in docker container.

Modifications:

Generate InfluxDB configuration section to enable it.

Result:

Users can enable InfluxDB by specifying SW_STORAGE=influxdb
This commit is contained in:
kezhenxu94 2020-03-10 20:41:34 +08:00 committed by GitHub
parent ab8d7fab23
commit 73d0802cd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -355,6 +355,7 @@ EOT
elasticsearch) generateStorageElastisearch;;
h2) generateStorageH2;;
mysql) generateStorageMySQL;;
influxdb) generateStorageInfluxDB;;
esac
cat <<EOT >> ${var_application_file}

View File

@ -356,6 +356,7 @@ EOT
elasticsearch) generateStorageElastisearch;;
h2) generateStorageH2;;
mysql) generateStorageMySQL;;
influxdb) generateStorageInfluxDB;;
esac
cat <<EOT >> ${var_application_file}