We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e05d314 commit 3a0fd26Copy full SHA for 3a0fd26
common/utils/src/main/java/org/graalvm/buildtools/agent/AgentConfiguration.java
@@ -167,7 +167,7 @@ private void addDefaultAccessFilter() {
167
}
168
169
long pid = ProcessHandle.current().pid();
170
- long time = System.currentTimeMillis();
+ long time = System.nanoTime();
171
Path tmpAccessFilter = agentDir.resolve(ACCESS_FILTER_PREFIX + '_' + pid + '_' + time + '_' + ACCESS_FILTER_SUFFIX);
172
Files.copy(accessFilterData, tmpAccessFilter);
173
0 commit comments