From b981bf7638548c24364a92536b1d3a1e874ba8c2 Mon Sep 17 00:00:00 2001 From: Fabian Galinski <fabian@sgalinski.de> Date: Thu, 21 Jan 2021 09:47:59 +0100 Subject: [PATCH] [BUGFIX] Syntax error in the default.rb --- attributes/default.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/attributes/default.rb b/attributes/default.rb index 63babc5..b275d2c 100644 --- a/attributes/default.rb +++ b/attributes/default.rb @@ -1,9 +1,9 @@ default['xdebug']['directives'] = { :client_port => 9000, :discover_client_host => 'true', - :idekey => 'vagrant' + :idekey => 'vagrant', :max_nesting_level => 1500, :mode => 'debug', :remote_handler => 'dbgp', - :start_with_request => 'default', + :start_with_request => 'default' } -- GitLab