itchannel / graylognotifications

Graylog Pushover Notification Addon
8 stars 2 forks source link

build fails with unknown symbol PushNotificationConfigEntity #35

Open plopes9000 opened 6 months ago

plopes9000 commented 6 months ago

Trying to build locally tag 2.2 against graylog2_server 5.2.2 and was getting an error.

Essentially 2.2/src/main/java/com/itchannel/PushNotificationConfig.java tries to import com.itchannel.entities.PushNotificationConfigEntity which fails.

Instead importing com.itchannel.entities.PushEventNotificationConfigEntity together with the bellow, makes the compilation successful. @Override public EventNotificationConfigEntity toContentPackEntity(EntityDescriptorIds entityDescriptorIds) { return Push**Event**NotificationConfigEntity.builder()

Am I missing something? how could this have compiled for you?

Thanks