Skip to content

Commit

Permalink
fix(#11489): PageHandlerAdapterFactory initHandlerAdapters error (#11490
Browse files Browse the repository at this point in the history
)
  • Loading branch information
ICE-GB authored Dec 12, 2023
1 parent 327ebaf commit 26d045c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

package com.alibaba.nacos.plugin.auth.impl.persistence.handler;

import com.alibaba.nacos.plugin.auth.impl.persistence.handler.support.DefaultPageHandlerAdapter;
import com.alibaba.nacos.plugin.auth.impl.persistence.handler.support.DerbyPageHandlerAdapter;
import com.alibaba.nacos.plugin.auth.impl.persistence.handler.support.MysqlPageHandlerAdapter;

Expand Down Expand Up @@ -71,7 +72,7 @@ private void initHandlerAdapters() {
// DerbyPageHandlerAdapter
addHandlerAdapter(new DerbyPageHandlerAdapter());
// DefaultPageHandlerAdapter
addHandlerAdapter(new DerbyPageHandlerAdapter());
addHandlerAdapter(new DefaultPageHandlerAdapter());
}

private void addHandlerAdapter(PageHandlerAdapter handlerAdapter) {
Expand Down

0 comments on commit 26d045c

Please sign in to comment.