You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am writing to report a warning that occurs while utilizing your library on the Windows operating system. For context, I am currently using Windows 11.
The warning message is as follows: PHP Warning: cli_set_process_title(): cli_set_process_title had an error: Windows error code: 6 in /path/to/project/vendor/amphp/parallel/src/Context/Internal/process-runner.php on line 16
The text was updated successfully, but these errors were encountered:
This line was using the error suppression operator (@), so this warning should not have been issued. You likely are using an error handler which does not respect the current error reporting level.
This mistake is frequently made, so as we've been converting uses of @ to explicitly set the error handler instead, which I've done to avoid this in the future.
Hello,
I am writing to report a warning that occurs while utilizing your library on the Windows operating system. For context, I am currently using Windows 11.
The warning message is as follows:
PHP Warning: cli_set_process_title(): cli_set_process_title had an error: Windows error code: 6 in /path/to/project/vendor/amphp/parallel/src/Context/Internal/process-runner.php on line 16
The text was updated successfully, but these errors were encountered: