Formatting

This commit is contained in:
Henry Whitaker
2021-04-10 22:02:27 +01:00
parent 4e6049b7ec
commit 845359726d

View File

@@ -43,12 +43,14 @@ class InfluxDBVersion1Wrapper implements InfluxDBWrapperInterface
public function createDatabase(string $database): bool
{
try {
$this->database->create(new RetentionPolicy(
$this->database->create(
new RetentionPolicy(
'speedtest_retention_policy',
config('services.influxdb.retention'),
1,
true
));
)
);
return true;
} catch (Exception $e) {