Timeout error trying to lock table in h2

前端 未结 8 1560
无人共我
无人共我 2020-12-02 16:39

I get the following error under a certain scenario

When a different thread is populating a lot of users via the bulk upload operation and I was trying to view the li

8条回答
  •  一整个雨季
    2020-12-02 17:31

    I got this issue with the PlayFramework

    JPAQueryException occured : Error while executing query from models.Page where name = ?: Timeout trying to lock table "PAGE"

    It ended being an infinite loop of sorts because I had a

    @Before

    without an unless which caused the function to repeatedly call itself

    @Before(unless="getUser")

提交回复
热议问题