Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

The old caTissue or OpenSpecimen v1.1 query forms are not compatible with v2x or later version query forms. As a result, when upgrading from v1.1 to later versions, following error occurs during application bootstrap: Error creating bean with name 'importQueryForms'

To fix this problem, follow below steps:

  1. Delete old query form associations

    delete from 
      catissue_form_context 
    where 
      container_id in (
        select
          identifier
        from
          dyextn_containers
        where
          name in ('CollectionProtocol', 'Participant', 'SpecimenCollectionGroup', 'Specimen', 'Order', 'Shipment')
      ) and
      entity_type = 'Query';
  2. Delete incompatible query form definitions

    delete from 
      dyextn_containers 
    where 
      name in ('CollectionProtocol', 'Participant', 'SpecimenCollectionGroup', 'Specimen', 'Order', 'Shipment');
  3. Restart OpenSpecimen
  • No labels