remove completed flag from hs_booking.item_created_event
This commit is contained in:
parent
c08bddacda
commit
924219a992
@ -43,14 +43,6 @@ public class BookingItemCreatedEventEntity {
|
||||
@Column(name = "statusmessage")
|
||||
private String statusMessage;
|
||||
|
||||
@Setter
|
||||
@Column
|
||||
private boolean completed;
|
||||
|
||||
public void setBookingItem(HsBookingItemRealEntity bookingItem) {
|
||||
this.bookingItem = bookingItem;
|
||||
}
|
||||
|
||||
public BookingItemCreatedEventEntity(
|
||||
@NotNull final HsBookingItemRealEntity newBookingItem,
|
||||
final String assetJson) {
|
||||
|
@ -33,8 +33,12 @@ public class HsBookingItemCreatedListener implements ApplicationListener<Booking
|
||||
case DOMAIN_SETUP -> new DomainSetupHostingAssetFactory(emw, newBookingItemRealEntity, asset, standardMapper);
|
||||
};
|
||||
if (factory != null) {
|
||||
event.getEntity().setStatusMessage(factory.performSaveProcess());
|
||||
emw.persist(event.getEntity()); // TODO.impl: once we implement retry, we might need merge
|
||||
final var statusMessage = factory.performSaveProcess();
|
||||
// TODO.impl: once we implement retry, we need to amend this code (persist/merge/delete)
|
||||
if (statusMessage != null) {
|
||||
event.getEntity().setStatusMessage(statusMessage);
|
||||
emw.persist(event.getEntity());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -40,8 +40,7 @@ create table if not exists hs_booking.item_created_event
|
||||
bookingItemUuid uuid unique references hs_booking.item (uuid),
|
||||
version int not null default 0,
|
||||
assetJson text,
|
||||
statusMessage text,
|
||||
completed boolean not null default false
|
||||
statusMessage text
|
||||
);
|
||||
--//
|
||||
|
||||
|
@ -264,8 +264,7 @@ class HsBookingItemControllerAcceptanceTest extends ContextBasedTestWithCleanup
|
||||
.map(HsHostingAsset::getParentAsset)
|
||||
.isEqualTo(domainSetupHostingAsset);
|
||||
final var event = bookingItemCreationEventRepo.findByBookingItem(newBookingItem);
|
||||
assertThat(event.isCompleted());
|
||||
|
||||
assertThat(event).isNull();
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Loading…
Reference in New Issue
Block a user