Skip to content

Commit

Permalink
behat: prevent stalled builds by using posix_kill() instead of proc_c…
Browse files Browse the repository at this point in the history
…lose()
  • Loading branch information
scribu committed May 30, 2015
1 parent 7c1f9d2 commit 06ab8fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion features/bootstrap/FeatureContext.php
Expand Up @@ -127,7 +127,7 @@ private static function terminate_proc( $proc ) {
}
}

proc_close( $proc );
posix_kill( $master_pid, 9 );
}

public static function create_cache_dir() {
Expand Down

0 comments on commit 06ab8fd

Please sign in to comment.