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
The ApiGen generates incorrect code for methods that return void and
use nowait.
The generated code has this in it:
> if (nowait) {
> ModelSend(__req,null,null);
> }
It should have this:
> if (nowait) {
> ModelSend(__req,null,null);
> return;
> }
The functions that do return something, have the return statement in
them. For instance, see QueuePurge.
0 commit comments