• FEATURES
  • PRICING
  • MARKETPLACE
  • CASE STUDIES
  • BLOG
  • v2.0 Testing Notes

    When adding users and indicating their institute and department, it appears the count of users in an institute is not updating. In the attached screenshot, 2 users are expected for the JHU institute in the count though 0 appear.

    For a collected specimen, the Add Event and Dispose functions are not responding when clicked (screenshot attached).

    The LOCKED column in the databasechangeloglock table gets set to 1
    sometimes when the server is not properly shutdown. This causes startup issues
    until the table is manually set back to 0. Is this an issue with the beta
    process or a possible bug?

    Hi @Matthew_Marcetich

    Thanks for the feedback:

    1: Counts on cards still needs to be implemented, see the issue for it - https://openspecimen.atlassian.net/browse/OPSMN-2000

    2: Dispose is now changed to Close and it is implemented on latest build on demo site. Add event can be done from events tab, needs to be implemented on this right click menu.

    I will let @nitesh_marwaha reply for the 3rd issue.

    Thanks,
    Poornima

    Hi @Matthew_Marcetich,

    The LOCKED column in the databasechangeloglock table gets set to 1

    OpenSpecimen application uses liquibase to manage the database changes. So at server startup liquibase uses this table to hold the lock on the database, to make sure that no other liquibase process can perform the same operation.

    This problem occurs only when the JVM or application server process killed during server startup.

    In such scenarios please run the below command:

    UPDATE DATABASECHANGELOGLOCK SET LOCKED=FALSE

    ~Nitesh