Commit d6b12c12 authored by Noel Alonso's avatar Noel Alonso
Browse files

Arregla problema por no crear serde al iniciar

parent 50eb6c1f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -53,7 +53,7 @@ public class VesselTrackingEventStreams extends EventSourcingStreams {
		this.vesselTopic = vesselTopic;
		this.vesselTrackingAggByVesselTopic = vesselTrackingAggByVesselTopic;
		this.vesselUpdatedTopic = vesselUpdatedTopic;
		this.hashMapSerde = new HashMapSerde<>(schemaRegistry);
		this.hashMapSerde = new HashMapSerde<String, AggregationVesselInVesselTrackingPostUpdateEvent>(schemaRegistry);

		logger.info("Arrancado servicio de streaming para event sourcing de Vessel tracking con Id: " + this.serviceId);
		init();