-
Notifications
You must be signed in to change notification settings - Fork 462
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 API - targetType returning 'Null' (Confirmed BUG) #1148
Comments
How does it looks like in the JSON? You can log the HTTP traffic. See: #1109 (comment) |
@jmini Thanks for your response. I tried Level.INFO but only got the request URL - It didn't dump the response. I tried Level.ALL and I got NO log messages.
Any idea why it isn't logging the raw response? |
@jmini I tried this using curl and confirmed that the API does indeed return a non-null target_type: From curl from gitlab4j (both 5.1, 5.6, and 6.0-rc5) What can be done to resolve this BUG in version 5.x? |
The specification says the value should be |
When using the Events API like this:
List<Event> events = api.getEventsApi() .getUserEventsStream(user, null, null, new Date(), after, null) .collect(Collectors.toList());
For the results where
actionName
=accepted
,targetType
is coming back as NULL. I would expect the value to be MergeRequest. Any ideas?The text was updated successfully, but these errors were encountered: