Skip to content

Commit 4f3991b

Browse files
committed
Issue #67: Implement MariaDB/PostgreSQL connection
Signed-off-by: alexmerlin <alex.merlin.1985@gmail.com>
1 parent 6b0cf13 commit 4f3991b

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
/vendor/
66
.idea
77
composer.lock
8+
.phpunit.result.cache

src/Swoole/src/Command/GetFailedMessagesCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
8787
return Command::FAILURE;
8888
}
8989

90-
$logPath = dirname(__DIR__, 3) . '/log/queue-log.log';
90+
$logPath = dirname(__DIR__, 4) . '/log/queue-log.log';
9191

9292
if (! file_exists($logPath)) {
9393
$output->writeln("<error>Log file was not found: $logPath</error>");

src/Swoole/src/Command/GetProcessedMessagesCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
8787
return Command::FAILURE;
8888
}
8989

90-
$logPath = dirname(__DIR__, 3) . '/log/queue-log.log';
90+
$logPath = dirname(__DIR__, 4) . '/log/queue-log.log';
9191

9292
if (! file_exists($logPath)) {
9393
$output->writeln("<error>Log file was not found: $logPath</error>");

0 commit comments

Comments
 (0)