- Notifications
You must be signed in to change notification settings - Fork907
Commitef00ae5
authored
fix: fix data race in agentscripts.Runner (#17630)
Fixescoder/internal#604Fixes a data race in `agentscripts.Runner` where a concurrent `Execute()` call races with `Init()`. We hit this race during shut down, which is not synchronized against starting up.In this PR I've chosen to add synchronization to the `Runner` rather than try to synchronize the calls in the agent. When we close down the agent, it's OK to just throw an error if we were never initialized with a startup script---we don't want to wait for it since that requires an active connection to the control plane.1 parent35d686c commitef00ae5
1 file changed
+19
-4
lines changedLines changed: 19 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
13 |
| - | |
14 | 13 |
| |
15 | 14 |
| |
16 | 15 |
| |
| |||
104 | 103 |
| |
105 | 104 |
| |
106 | 105 |
| |
107 |
| - | |
108 | 106 |
| |
109 | 107 |
| |
110 | 108 |
| |
| |||
113 | 111 |
| |
114 | 112 |
| |
115 | 113 |
| |
| 114 | + | |
| 115 | + | |
| 116 | + | |
116 | 117 |
| |
117 | 118 |
| |
118 | 119 |
| |
| |||
154 | 155 |
| |
155 | 156 |
| |
156 | 157 |
| |
157 |
| - | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
158 | 161 |
| |
159 | 162 |
| |
160 |
| - | |
| 163 | + | |
161 | 164 |
| |
162 | 165 |
| |
163 | 166 |
| |
| |||
227 | 230 |
| |
228 | 231 |
| |
229 | 232 |
| |
| 233 | + | |
| 234 | + | |
| 235 | + | |
| 236 | + | |
| 237 | + | |
| 238 | + | |
| 239 | + | |
| 240 | + | |
| 241 | + | |
| 242 | + | |
| 243 | + | |
| 244 | + | |
230 | 245 |
| |
231 | 246 |
| |
232 | 247 |
| |
|
0 commit comments
Comments
(0)