Fix recursive proxying in PhasedStorage

ugh
This commit is contained in:
Luck 2018-03-18 18:31:30 +00:00
parent 0150da94a8
commit 0f99a6c5ca
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B

View File

@ -66,7 +66,7 @@ public interface PhasedStorage extends Storage {
case "getName": case "getName":
case "init": case "init":
case "getMeta": case "getMeta":
return method.invoke(proxy, args); return method.invoke(delegate, args);
} }
// await the phaser on shutdown // await the phaser on shutdown