Skip to content

Commit

Permalink
tmp hardcode timestamp to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
attilakreiner committed May 8, 2024
1 parent 2c805b9 commit 5e95550
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,8 @@ private ZillaScope newScope(
int scopeIndex)
{
ZillaScope scope = new ZillaScope(config, labels, scopeIndex, this::lookupTargetIndex,
System::nanoTime, traceIds::incrementAndGet);
//System::nanoTime, traceIds::incrementAndGet);
() -> 0L, traceIds::incrementAndGet); // TODO
this.scopes = ArrayUtil.add(this.scopes, scope);
return scope;
}
Expand Down

0 comments on commit 5e95550

Please sign in to comment.