Skip to content

Unexpected behavior of the unsubscribe method #291

@Uriagat

Description

@Uriagat

When calling 'unsubscribeFrom' of subset of all subscription 'unsubscribeFrom' will throw exception on ARM architecure

std::vector<std::string> valid_subscriptions;
valid_subscriptions = threadApi.subscribeFor({
    threadApi.buildSubscriptionQuery(  
        thread::EventType::THREAD_CREATE,  
        thread::EventSelectorType::CONTEXT_ID,
        contextId
    )
});
std::vector<std::string> invalid_subscriptions;
invalid_subscriptions = threadApi.subscribeFor({
    threadApi.buildSubscriptionQuery(  
        thread::EventType::THREAD_CREATE,  
        thread::EventSelectorType::CONTEXT_ID,
        "error"
    )
});
threadApi.unsubscribeFrom({
    valid_subscriptions 
});

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions