Skip to content

Commit 0b39385

Browse files
authored
Speed up bin/xdebug commands (#1245)
1 parent 784cb86 commit 0b39385

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

compose/bin/xdebug

+2-4
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ xdebug_toggle() {
2121
xdebug_enable() {
2222
if [[ $S == 1 ]]; then
2323
bin/root sed -i -e 's/^xdebug.mode = off/xdebug.mode = debug/g' /usr/local/etc/php/php.ini
24-
sleep 1
25-
bin/restart phpfpm
24+
bin/cli kill -USR2 1
2625
echo "Xdebug debug mode has been enabled."
2726
else
2827
echo "Xdebug debug mode is already enabled."
@@ -32,8 +31,7 @@ xdebug_enable() {
3231
xdebug_disable() {
3332
if [[ $S == 0 ]]; then
3433
bin/root sed -i -e 's/^xdebug.mode = debug/xdebug.mode = off/g' /usr/local/etc/php/php.ini
35-
sleep 1
36-
bin/restart phpfpm
34+
bin/cli kill -USR2 1
3735
echo "Xdebug debug mode has been disabled."
3836
else
3937
echo "Xdebug debug mode is already disabled."

0 commit comments

Comments
 (0)