-
-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat(influxdb): add influxdb backup support #198
Feat(influxdb): add influxdb backup support #198
Conversation
Thanks for the implementation. It looks great but I found some small issues that cause the unit tests to fail. |
$appResult->expects($this->once())->method('debug'); | ||
|
||
$influxd = new Influxdump($runner); | ||
$influxd->setup(['pathToInfluxDb' => PHPBU_TEST_BIN]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pathToInfluxDb
should be pathToInfluxdump
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My bad, I solved this when I had running the test but I forgot to add in GIT...
Problem fix now.
$appResult->expects($this->once())->method('debug'); | ||
|
||
$influxd= new Influxdump($runner); | ||
$influxd->setup(['pathToInfluxDb' => PHPBU_TEST_BIN]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pathToInfluxDb
should be pathToInfluxdump
$appResult->expects($this->once())->method('debug'); | ||
|
||
$influxd = new Influxdump($runner); | ||
$influxd->setup(['pathToInfluxDb' => PHPBU_TEST_BIN]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pathToInfluxDb
should be pathToInfluxdump
c6754e7
to
5c4c9ae
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work! Thanks
No description provided.