Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Events are not tracked after update to v3.6.8 #733

Closed
mihai8804858 opened this issue Dec 3, 2017 · 3 comments
Closed

Events are not tracked after update to v3.6.8 #733

mihai8804858 opened this issue Dec 3, 2017 · 3 comments
Labels

Comments

@mihai8804858
Copy link

Updating Segment to v3.6.8 led to all events not being tracked in Segment Debugger.
After some debugging we found that payload structure has changes which can be the reason Segment is not able to parse the events.

v3.6.7:

{
    "batch": [{
        "messageId": ...,
        "anonymousId": ...,
        "userId": ...,
        "context": {... },
        "properties": {...},
        "type": ...,
        "timestamp": ...,
        "name": ...,
        "integrations": {}
    }, {
        "messageId": ...,
        "anonymousId": ...,
        "userId": ...,
        "event": ...,
        "context": {...},
        "properties": {...},
        "type": ...,
        "timestamp": ...,
        "integrations": {...}
    }],
    "sentAt": ...
}

v3.6.8

[{
        "messageId": ...,
        "anonymousId": ...,
        "userId": ...,
        "context": {...},
        "properties": {... },
        "type": ...,
        "timestamp": ...,
        "name": ...,
        "integrations": {...}
    }, {
        "messageId": ...,
        "anonymousId": ...,
        "userId": ...,
        "event": ...,
        "context": {... },
        "properties": {...},
        "type": ...,
        "timestamp": ...,
        "integrations": {...}
    },
    "sentAt": ...
]
@mihai8804858 mihai8804858 changed the title Events are not tacked after update to v3.6.8 Events are not tacked after update to v3.6.8 Dec 3, 2017
@f2prateek
Copy link
Contributor

f2prateek commented Dec 3, 2017

Let me check and get back to you.

@f2prateek
Copy link
Contributor

hey @mihai8804858, we just fixed the bug in #736 . The fix is being released in 3.6.9 now.

Thanks for reporting the issue and sorry about this bug - we're taking this seriously and will be making significant improvements to our testing suite to avoid these kinds of issues again in the future.

@f2prateek f2prateek added the bug label Dec 3, 2017
@mihai8804858
Copy link
Author

Thank you @f2prateek

@mihai8804858 mihai8804858 changed the title Events are not tacked after update to v3.6.8 Events are not tracked after update to v3.6.8 Dec 3, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants