Would it be safe/recommended to use the following code or would that hit any limit? ```ts const a =

Would it be safe/recommended to use the following code or would that hit any limit?
const a = await this.env.EXTENSION_HANDLER.get('id');
let state = await a.status();
while (state.status !== 'running') {
  state = await a.status();
}
Was this page helpful?