Hi, the form compiler computes the degree of the integrand and chooses the exact quadrature rule. If the rule uses more than 99 quadrature points you get the warning. The warning message suggests reducing the degree, e.g.
q_degree = 3
dx = dx(metadata={'quadrature_degree': q_degree})
Note that you will be using inexact integration then. If you encountered this while computing the error with errornorm
function consider lowering the degree_rise
argument which has value 3 by default.