Skip to content

Commit e46168d

Browse files
committed
add a comment and fix the javadoc
1 parent 8473753 commit e46168d

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/main/java/org/jenkinsci/plugins/github/webhook/subscriber/DuplicateEventsSubscriber.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ protected boolean isApplicable(@Nullable Item item) {
6363
}
6464

6565
/**
66-
* The {@link DuplicateEventsSubscriber} is interested in only those events that trigger actions in Jenkins,
67-
* such as repository scans or builds.
66+
* {@inheritDoc}
67+
* <p>
68+
* Subscribes to events that trigger actions in Jenkins, such as repository scans or builds.
6869
* <p>
6970
* The {@link GHEvent} enum defines about 63 events, but not all are relevant to Jenkins.
7071
* Tracking unnecessary events increases memory usage, and they occur more frequently than those triggering any

src/test/java/org/jenkinsci/plugins/github/admin/GitHubDuplicateEventsMonitorTest.java

+8
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,14 @@ public void setUp() throws Exception {
4747
public void testAdminMonitorDisplaysForDuplicateEvents() throws Exception {
4848
try (var mockSubscriber = Mockito.mockStatic(GHEventsSubscriber.class)) {
4949
var subscribers = j.jenkins.getExtensionList(GHEventsSubscriber.class);
50+
/* Other type of subscribers are removed to avoid them invoking event processing. At this
51+
time, when using the `push` event type, the `DefaultGHEventsSubscriber` gets invoked, and throws
52+
an NPE during processing of the event. This is because the `GHEvent` object here is not fully initialized.
53+
However, as this test is only concerned with the duplicate event detection, it doesn't seem to add value
54+
in fixing for the NPE. Alternatively, we may choose to send an event which is not subscribed
55+
by other subscribers (ex: `check_run`), but that would only work until someone adds a new subscriber for
56+
that event type, at which point, a new event type would need to be chosen in here.
57+
* */
5058
var nonDuplicateSubscribers = subscribers.stream()
5159
.filter(e -> !(e instanceof DuplicateEventsSubscriber))
5260
.toList();

0 commit comments

Comments
 (0)