Fix callback consumer context package

This commit is contained in:
Albumen Kevin 2023-08-22 15:08:23 +08:00
parent 7a4ec6c525
commit 4e9a0a41fc
3 changed files with 3 additions and 4 deletions

View File

@ -1,2 +1 @@
monitor=org.apache.dubbo.monitor.support.MonitorFilter
callback-consumer-context=org.apache.dubbo.monitor.support.CallbackConsumerContextFilter

View File

@ -14,11 +14,10 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.dubbo.monitor.support;
package org.apache.dubbo.rpc.cluster.filter.support;
import org.apache.dubbo.common.extension.Activate;
import org.apache.dubbo.rpc.Filter;
import org.apache.dubbo.rpc.cluster.filter.support.ConsumerContextFilter;
import org.apache.dubbo.rpc.model.ApplicationModel;
import static org.apache.dubbo.common.constants.CommonConstants.CALLBACK;
@ -30,7 +29,7 @@ import static org.apache.dubbo.common.constants.CommonConstants.CALLBACK;
*/
@Activate(group = CALLBACK, order = Integer.MIN_VALUE)
public class CallbackConsumerContextFilter extends ConsumerContextFilter implements Filter {
public CallbackConsumerContextFilter(ApplicationModel applicationModel) {
super(applicationModel);
}

View File

@ -1 +1,2 @@
context=org.apache.dubbo.rpc.filter.ContextFilter
callback-consumer-context=org.apache.dubbo.rpc.cluster.filter.support.CallbackConsumerContextFilter