No idea why this has started happening but am receiving the following:
Integrity constraint violation: 1062 Duplicate entry 'page_leadership_panel_context' for key 'name': INSERT INTO {page_manager_handlers} ...
In page.inc's page_manager_page_save(&$page), the following line is returning no pid so the subsequent drupal_write_record() thinks it's an insert instead of an update. The pid is the primary key for that table:
$update = (isset($page->pid)) ? array('pid') : array();
...
drupal_write_record('page_manager_pages', $page, $update);
I've looked around and it's not clear to me why the pid is missing in the code leading up to this point.
Closed: outdated
3.4
Panel pages
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.