How to find Meteor._wrapAsync in some code when using Meteor 3?

Hi,
How to find Meteor._wrapAsync in code? I have tried to find, but did not find.

git clone https://github.com/wekan/wekan-meteor3

cd wekan-meteor3

./rebuild-wekan.sh 

Recommended for development: Debian 12 amd64 or Ubuntu 24.04, directly to SSD disk or dual boot, not VM. Works fast.
Note1: If you use other locale than en_US.UTF-8 , you need to additionally install en_US.UTF-8
       with 'sudo dpkg-reconfigure locales' , so that MongoDB works correctly.
       You can still use any other locale as your main locale.
Note2: Console output is also logged to ../wekan-log.txt

 1) Install Wekan dependencies
 2) Build Wekan
 3) Run Meteor for dev on http://localhost:4000
 4) Run Meteor for dev on http://localhost:4000 with trace warnings, and warnings using old Meteor API that will not exist in Meteor 3.0
 5) Run Meteor for dev on http://localhost:4000 with bundle visualizer
 6) Run Meteor for dev on http://CURRENT-IP-ADDRESS:4000
 7) Run Meteor for dev on http://CURRENT-IP-ADDRESS:4000 with MONGO_URL=mongodb://127.0.0.1:27019/wekan
 8) Run Meteor for dev on http://CUSTOM-IP-ADDRESS:PORT
 9) Save Meteor dependency chain to ../meteor-deps.txt
10) Quit
Please enter your choice: 3
[[[[[ ~/repos/wekan-meteor3 ]]]]]

=> Started proxy.
=> Started HMR server.
=> Started MongoDB.
I20240803-21:26:06.818(3)? Meteor._wrapAsync has been renamed to Meteor.wrapAsync
=> Started your app.

=> App running at: http://localhost:4000

Hi @xet7 , as far as I understand, wrapAsync wouldn’t work as before anymore, at least not in making server side code appear procedurally like before, which was been done using fibers.

The same syntax won’t work anymore with 3.0 and I think it has been removed from the codebase therefore?

It can be new headache to migrate to Meteor3. I checked, the migration guide and about changes according to wrapAsync, there is no any mention about it.

I have changed every _wrapAsync to wrapAsync that I have found. I have not found where to change some remaining _wrapAsync.