Simple Queue not applied?

Hello,
I’m trying to apply priority to certain traffic on our wireless bridge. The goal is to give traffic on port 3389 priority, as well as traffic on port 80 where the destination is 192.168.50.0/24.
I have applied the same settings to both ends of the bridge, but I only see it working on the ap side. To check, I am using winbox and looking at the total packets in the queue list window. On the cpe side, only the mangle packets update, the queue list rules stay at 0. The AP side both mangle and queue packets continually update as expected.

Probably missing something obvious here…

This is the config I put together and applied on both ends. AP is 3.10, CPE is 3.20

/ interface bridge settings
set use-ip-firewall=yes
/ ip firewall mangle
add chain=prerouting protocol=tcp dst-port=3389 action=mark-connection
new-connection-mark=rdp_conn passthrough=yes
add chain=prerouting connection-mark=rdp_conn action=mark-packet
new-packet-mark=rdp passthrough=no
add chain=prerouting protocol=icmp action=mark-connection
new-connection-mark=icmp_conn passthrough=yes
add chain=prerouting connection-mark=icmp_conn action=mark-packet
new-packet-mark=icmp passthrough=no
add chain=prerouting action=mark-connection
new-connection-mark=pri_http_conn dst-address=192.168.50.0/24 dst-port=80 protocol=tcp passthrough=yes
add chain=prerouting connection-mark=pri_http_conn action=mark-packet
new-packet-mark=pri_http passthrough=no
add chain=prerouting action=mark-connection
new-connection-mark=other_httpconn dst-address=!192.168.50.0/24 dst-port=80 protocol=tcp passthrough=yes
add chain=prerouting connection-mark=other_http_conn action=mark-packet
new-packet-mark=other_http passthrough=no
..
..
..
/ queue simple
add name=“rdp” packet-marks=rdp priority=1
add name=“icmp” packet-marks=icmp priority=2
add name=“pri_http” packet-marks=pri_http priority=3
add name=“other_http” packet-marks=other_http priority=8
..
..

I think I’ve found the answer for this.
Changed the queue type on the cpe to wireless-default, and the packets started counting in the simple queue window.