-
I think it would help a lot if the IDE or linter would highlight if a async function is called without a await. This could prevent some simple mistakes.
-
Let's say I have a `createOrg` route in my app, which is called when a user attempts to create a new organisation. In this route, I create an org record in my DB and a Stripe Customer. To ensure both …
-
Hello all.
I would like to ask if there is a way to disable acknowledgement when sending a message. In order words if there is a menu that can configure the message options and disable the awaiting…
-
Im fairly new to dart and Flutter so maybe this has already be implemented and i just cand find it/get it to work.
Basically this is the only way i was able to receive data from my ESP8266:
```dart…
-
Godot 4 introduced the `await` keyword for coroutines, it would be nice to use it in this SDK, too. Here is an example with the `login_as_new_guest_user` call.
Current SDK usage:
```gdscript
func _re…
-
https://developers.home-assistant.io/blog/2022/07/08/config_entry_forwards/
https://github.com/kvj/hass_openwrt/blob/8eb8a37c629bd2df933e282ab34005a665e46d2c/custom_components/openwrt/__init__.py#L…
-
An SDK function that works similarly to [await](https://javadoc.io/doc/io.temporal/temporal-sdk/1.0.0/io/temporal/workflow/Workflow.html#await-java.time.Duration-java.util.function.Supplier-) but is b…
-
### Bug Description
Any calls to async-await operations that are related to llama_index.embeddings.gemini is causing this error:
TypeError: object BatchEmbedContentsResponse can't be used in 'await'…
-
# My problem
At the end of my python script, I get a clean up error : `TypeError: object NoneType can't be used in 'await' expression`
Complete trace is :
```
Traceback (most recent call last):…
-
as the title, because Moya have not support `async` with Alamofire
now I have to use this method to support async and await
```
return try await withCheckedContinuation { continuation in
…