Skip to content

Commit 921231a

Browse files
kayukinKonstantin Kayukin
and
Konstantin Kayukin
authored
fix: Use seconds instead of milliseconds (#1174)
Signed-off-by: Konstantin Kayukin <[email protected]> Co-authored-by: Konstantin Kayukin <[email protected]>
1 parent ac751e8 commit 921231a

File tree

1 file changed

+2
-2
lines changed
  • providers/go-feature-flag/src/main/java/dev/openfeature/contrib/providers/gofeatureflag/hook

1 file changed

+2
-2
lines changed

providers/go-feature-flag/src/main/java/dev/openfeature/contrib/providers/gofeatureflag/hook/DataCollectorHook.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public void after(HookContext ctx, FlagEvaluationDetails details, Map hints) {
6262
.variation(details.getVariant())
6363
.value(details.getValue())
6464
.userKey(ctx.getCtx().getTargetingKey())
65-
.creationDate(System.currentTimeMillis())
65+
.creationDate(System.currentTimeMillis() / 1000L)
6666
.build();
6767
eventsPublisher.add(event);
6868
}
@@ -73,7 +73,7 @@ public void error(HookContext ctx, Exception error, Map hints) {
7373
.key(ctx.getFlagKey())
7474
.kind("feature")
7575
.contextKind(GoFeatureFlagUser.isAnonymousUser(ctx.getCtx()) ? "anonymousUser" : "user")
76-
.creationDate(System.currentTimeMillis())
76+
.creationDate(System.currentTimeMillis() / 1000L)
7777
.defaultValue(true)
7878
.variation("SdkDefault")
7979
.value(ctx.getDefaultValue())

0 commit comments

Comments
 (0)