File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
src/main/java/com/mageddo/dnsproxyserver/config/dataformat/v3/file Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1- ## 5.1.2
1+ ## 5.1.3
22* Changed resolv.conf handling format to make it compatible with alpine linux see [ #627 ] [ 5_1_0_1 ] [ 1] .
33* Refactoring Linux amd64 static build to work on Github Actions
44* Creating the docs for config v3
55* Fixing Hostname Entry Update API
66* Fixing intermittent unit test
7+ * MutableConfigFileDAO: Caching queries
78
89[ 5_1_0_1 ] : https://github.com/mageddo/dns-proxy-server/issues/627
910
Original file line number Diff line number Diff line change 1- version =5.1.2 -snapshot
1+ version =5.1.3 -snapshot
Original file line number Diff line number Diff line change @@ -39,9 +39,13 @@ public Config find() {
3939 .find ();
4040 }
4141
42+ Config findCached () {
43+ return Configs .getInstance ();
44+ }
45+
4246 @ Override
4347 public Env findActiveEnv () {
44- final var config = this .find ();
48+ final var config = this .findCached ();
4549 return findEnv (config .getActiveEnv (), config );
4650 }
4751
You can’t perform that action at this time.
0 commit comments