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 method schema::event::create_pull_point_subscription() return a struct schema::event::CreatePullPointSubscriptionResponse
pubstructCreatePullPointSubscriptionResponse{// Endpoint reference of the subscription to be used for pulling the// messages.#[yaserde(prefix = "tev", rename = "SubscriptionReference")]pubsubscription_reference: wsa::EndpointReferenceType,// Current time of the server for synchronization purposes.#[yaserde(prefix = "wsnt", rename = "CurrentTime")]pubcurrent_time: wsnt::CurrentTime,// Date time when the PullPoint will be shut down without further pull// requests.#[yaserde(prefix = "wsnt", rename = "TerminationTime")]pubtermination_time: wsnt::TerminationTime,}
As described in the comment, the field is needed when pulling. However, arguments of schema::event::pull_messages() do not contain the subscription_reference.
I've tried to use create_pull_point_subscription(), it's OK. But when I use pull_messages(), the camera response 500 Internal Server Error.
The text was updated successfully, but these errors were encountered:
The method
schema::event::create_pull_point_subscription()
return a structschema::event::CreatePullPointSubscriptionResponse
As described in the comment, the field is needed when pulling. However, arguments of
schema::event::pull_messages()
do not contain thesubscription_reference
.I've tried to use
create_pull_point_subscription()
, it's OK. But when I usepull_messages()
, the camera response500 Internal Server Error
.The text was updated successfully, but these errors were encountered: