71829664b2
get_or_create_project() first calls a get (query of the database). If that fails, then it calls create. The issues is when there are two threads and both fail the original get, then each will call create. One of those creates will fail, resulting in the traceback. One way to protect this critical region is to call create first, then if that fails, call get. In this case, get_or_create_project() is called for every Barbican API operation. The create action (which is slow), happens once per project for the life of the cloud. The get action happens every other time. For performance gains, I left call get first, since that call succeeds almost always. Change-Id: I2f13b495a6b45e226e0742291f76ee88dbcf52df Closes-bug: #1726203