Skip to content

Commit

Permalink
Merge pull request #22 from themsaid/databaseShellCommand2
Browse files Browse the repository at this point in the history
Database shell command2
  • Loading branch information
themsaid authored Oct 16, 2019
2 parents bcbc9b7 + fa228a4 commit 6d7c6d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Commands/DatabaseShellCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ protected function findCompatibleJumpBox(array $database)
return $jumpBox['network_id'] == $database['network_id'];
});

$jumpBox = in_array($database, ['rds', 'aurora-serverless'])
$jumpBox = in_array($database['type'], ['rds', 'aurora-serverless'])
? $jumpBoxes->first()
: $jumpBoxes->firstWhere('version', '>', 1);

Expand Down
2 changes: 1 addition & 1 deletion vapor
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ require __DIR__.'/services.php';
/**
* Start the console application.
*/
$app = new Application('Laravel Vapor', '1.4.0');
$app = new Application('Laravel Vapor', '1.4.1');

// Authentication...
$app->add(new Commands\LoginCommand);
Expand Down

0 comments on commit 6d7c6d4

Please sign in to comment.