Skip to content

Commit

Permalink
feat: removed timestamp from messageId (#175)
Browse files Browse the repository at this point in the history
Co-authored-by: Desu Sai Venkat <[email protected]>
  • Loading branch information
desusai7 and Desu Sai Venkat authored Dec 8, 2022
1 parent 452fa4c commit 1e61538
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

public class RudderMessage {
@SerializedName("messageId")
private String messageId = String.format(Locale.US, "%d-%s", System.currentTimeMillis(), UUID.randomUUID().toString());
private String messageId = UUID.randomUUID().toString();
@SerializedName("channel")
private String channel = "mobile";
@SerializedName("context")
Expand Down

0 comments on commit 1e61538

Please sign in to comment.