I am trying to create >100 items as AllowedAttributeValue using WSAPI in Rally from python without pyral. Input is from a input file. Code -
for line in inputFile:
body = {<body>}
try:
r = requests.post(url, headers=headers, data=body, proxies=proxy)
Not all 100 rows are getting updated. number vary from 40-70. Error :
["Concurrency conflict: [Object has been modified since being read for update in this context] - ConcurrencyConflictException : Modified since read on update : Object Class : com.f4tech.slm.domain.WorkspaceConfiguration : ObjectID : <objid>"], "Warnings": []}}
Looking for a resolution. Appreciate your help!