Skip to content

Commit

Permalink
Update the fix for LDEV-4116
Browse files Browse the repository at this point in the history
  • Loading branch information
cfmitrah committed Mar 27, 2024
1 parent ce958e7 commit f32768f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions core/src/main/java/lucee/runtime/config/ConfigWebImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -814,6 +814,16 @@ public java.lang.String getHash() {
return instance.getHash();
}

@Override
public long getDebugThreshold() {
return instance.getDebugThreshold();
}

@Override
public long getDebugThreadThreshold() {
return instance.getDebugThreadThreshold();
}

public void updatePassword(boolean arg0, lucee.runtime.config.Password arg1, lucee.runtime.config.Password arg2) throws lucee.runtime.exp.PageException {
if (instance instanceof MultiContextConfigWeb) ((MultiContextConfigWeb) instance).updatePassword(this, arg0, arg1, arg2);
// TODO what do do here?
Expand Down

0 comments on commit f32768f

Please sign in to comment.