Skip to content

Commit

Permalink
Fix: Adjust config file path
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielanhaia committed Jul 7, 2020
1 parent 61502a7 commit e879e9f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Providers/CircuitBreakerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ class CircuitBreakerServiceProvider extends ServiceProvider
public function register()
{
$this->mergeConfigFrom(
__DIR__ . '../../config/circuit_breaker.php', 'circuit_breaker'
__DIR__ . '/config/circuit_breaker.php', 'circuit_breaker'
);
$this->mergeConfigFrom(
__DIR__.'/config/contact.php','contact'
);

$this->app->bind(CircuitBreakerAdapter::class, RedisCircuitBreaker::class);
Expand Down

0 comments on commit e879e9f

Please sign in to comment.