You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following my previous issue, I can confirm that I get the TypeError only when using Python 3.12 and not Python 3.11.
for firewall_cluster in FirewallCluster.objects.all():
for physical_interface in cluster_firewall.physical_interface.all():
if physical_interface.is_primary_mgt: # this triggers the error (in 3.12 only, otherwise works fine)
TypeError: Meta.__new__() got an unexpected keyword argument 'engine'
Could it be a serialization issue?
The text was updated successfully, but these errors were encountered:
for firewall_cluster in FirewallCluster.objects.all():
for physical_interface in firewall_cluster.physical_interface.all():
if physical_interface.is_primary_mgt: # this triggers the error (in 3.12 only, otherwise works fine)
logging.info(f"{firewall_cluster} - {physical_interface} is primary address")
Hello,
Following my previous issue, I can confirm that I get the TypeError only when using Python 3.12 and not Python 3.11.
Could it be a serialization issue?
The text was updated successfully, but these errors were encountered: