@@ -13,8 +13,11 @@ final class Timeout
13
13
/** @var bool */
14
14
private static $ initialized = false ;
15
15
16
- /** @var string|null */
17
- private static $ stackTrace = null ;
16
+ /**
17
+ * @var bool
18
+ * @internal
19
+ */
20
+ public static $ _tiggered = false ;
18
21
19
22
/**
20
23
* @internal
@@ -44,8 +47,6 @@ public static function enable(int $remainingTimeInMillis): void
44
47
*/
45
48
private static function init (): void
46
49
{
47
- self ::$ stackTrace = null ;
48
-
49
50
if (self ::$ initialized ) {
50
51
return ;
51
52
}
@@ -60,25 +61,16 @@ private static function init(): void
60
61
// Setup a handler for SIGALRM that throws an exception
61
62
// This will interrupt any running PHP code, including `sleep()` or code stuck waiting for I/O.
62
63
pcntl_signal (SIGALRM , function (): void {
63
- if (null !== Timeout::$ stackTrace ) {
64
- // we have already thrown an exception, do a harder exit.
65
- error_log ('Lambda timed out ' );
66
- error_log ((new LambdaTimeoutException ())->getTraceAsString ());
67
- error_log ('Original stack trace ' );
68
- error_log (Timeout::$ stackTrace );
69
-
70
- exit (1 );
71
- }
72
-
64
+ Timeout::$ _tiggered = true ;
73
65
$ exception = new LambdaTimeoutException ('Maximum AWS Lambda execution time reached ' );
74
- Timeout::$ stackTrace = $ exception ->getTraceAsString ();
75
-
76
- // Trigger another alarm after 1 second to do a hard exit.
77
- pcntl_alarm (1 );
66
+ // we have already thrown an exception, do a harder exit.
67
+ error_log ($ exception ->getMessage ());
68
+ error_log ($ exception ->getTraceAsString ());
78
69
79
- throw $ exception ;
70
+ exit ( 1 ) ;
80
71
});
81
72
73
+ self ::$ _tiggered = false ;
82
74
self ::$ initialized = true ;
83
75
}
84
76
@@ -91,7 +83,6 @@ public static function reset(): void
91
83
{
92
84
if (self ::$ initialized ) {
93
85
pcntl_alarm (0 );
94
- self ::$ stackTrace = null ;
95
86
}
96
87
}
97
88
}
0 commit comments