We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be955dc commit 13e0556Copy full SHA for 13e0556
1 file changed
core/protos/protoutils.go
@@ -22,16 +22,16 @@
22
* Intergovernmental Organization or submit itself to any jurisdiction.
23
*/
24
25
-
26
package pb
27
28
import (
+ "fmt"
29
"time"
30
)
31
32
func WrapEvent(ce isEvent_Payload) *Event {
33
return &Event{
34
- Timestamp:time.Now().Format(time.RFC3339),
35
- Payload: ce,
+ Timestamp: fmt.Sprintf("%d", time.Now().UnixMilli()),
+ Payload: ce,
36
}
37
0 commit comments