@@ -33,7 +33,7 @@ func (rp *RabbitUserCountPublisher) Publish(ctx context.Context, participantIds
3333
3434		msg  :=  amqp.Publishing {
3535			DeliveryMode : amqp .Transient ,
36- 			Timestamp :    time .Now (),
36+ 			Timestamp :    time .Now (). UTC () ,
3737			ContentType :  "application/json" ,
3838			Body :         bytea ,
3939			Type :         utils .GetType (event ),
@@ -82,7 +82,7 @@ func (rp *RabbitUserIdsPublisher) Publish(ctx context.Context, videoCallUsersCal
8282
8383	msg  :=  amqp.Publishing {
8484		DeliveryMode : amqp .Transient ,
85- 		Timestamp :    time .Now (),
85+ 		Timestamp :    time .Now (). UTC () ,
8686		ContentType :  "application/json" ,
8787		Body :         bytea ,
8888		Type :         utils .GetType (event ),
@@ -130,7 +130,7 @@ func (rp *RabbitInvitePublisher) Publish(ctx context.Context, invitationDto *dto
130130
131131	msg  :=  amqp.Publishing {
132132		DeliveryMode : amqp .Transient ,
133- 		Timestamp :    time .Now (),
133+ 		Timestamp :    time .Now (). UTC () ,
134134		ContentType :  "application/json" ,
135135		Body :         bytea ,
136136		Type :         utils .GetType (event ),
@@ -190,7 +190,7 @@ func (rp *RabbitDialStatusPublisher) Publish(
190190
191191	msg  :=  amqp.Publishing {
192192		DeliveryMode : amqp .Transient ,
193- 		Timestamp :    time .Now (),
193+ 		Timestamp :    time .Now (). UTC () ,
194194		ContentType :  "application/json" ,
195195		Body :         bytea ,
196196		Type :         utils .GetType (event ),
@@ -235,7 +235,7 @@ func (rp *RabbitRecordingPublisher) Publish(ctx context.Context, recordInProgres
235235
236236		msg  :=  amqp.Publishing {
237237			DeliveryMode : amqp .Transient ,
238- 			Timestamp :    time .Now (),
238+ 			Timestamp :    time .Now (). UTC () ,
239239			ContentType :  "application/json" ,
240240			Body :         bytea ,
241241			Type :         utils .GetType (event ),
@@ -271,7 +271,7 @@ func (rp *RabbitNotificationsPublisher) Publish(ctx context.Context, notificatio
271271
272272	msg  :=  amqp.Publishing {
273273		DeliveryMode : amqp .Transient ,
274- 		Timestamp :    time .Now (),
274+ 		Timestamp :    time .Now (). UTC () ,
275275		ContentType :  "application/json" ,
276276		Body :         bytea ,
277277		Headers :      headers ,
@@ -313,7 +313,7 @@ func (rp *RabbitScreenSharePublisher) Publish(ctx context.Context, participantId
313313
314314		msg  :=  amqp.Publishing {
315315			DeliveryMode : amqp .Transient ,
316- 			Timestamp :    time .Now (),
316+ 			Timestamp :    time .Now (). UTC () ,
317317			ContentType :  "application/json" ,
318318			Body :         bytea ,
319319			Type :         utils .GetType (event ),
0 commit comments