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
if not payload.value:
msg = "The data in UPayload should be Data::Value"
logging.debug(f"{msg}")
raise UStatus(code=UCode.INVALID_ARGUMENT, message=msg)
payload.value may be empty, so it is better to check with
if payload.value is None:
The text was updated successfully, but these errors were encountered:
Get the data from UPayload
payload.value may be empty, so it is better to check with
The text was updated successfully, but these errors were encountered: