arvindsv / faketime

Java agent to enable changing time in a Java project, mainly for testing.
18 stars 12 forks source link

Support for reading offset from a file #9

Open Qvazar opened 5 years ago

Qvazar commented 5 years ago

To implement a use case of a Java application running in Kubernetes, I needed to be able to dynamically set the time offset from outside the Java process. Every time System.currentTimeMillis() is called, the offset is now read from the file specified in the Java property faketime.offset.file instead of directly from the property faketime.offset.seconds. If the property is not set, the offset in faketime.offset.seconds is used as before.

This enables one to dynamically set the offset in a Kubernetes ConfigMap object, which is mounted in the Java application container as a file.