You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After retrieving a case from a Hive instance with find_cases(), if you pass the case to create a new one the PAP flag is ignored and the new case always shows AMBER (2)
Steps to Reproduce
Create a case in the Hive with PAP flag set to something else than AMBER
Retrive this case from API and create a new one from the same object:
if response.status_code == 200:
if len(response.json()) > 0:
dest_api.create_case(Case(**response.json()[0]))
Newly created case always shows a PAP flag set to Amber
The text was updated successfully, but these errors were encountered:
Bug
Work Environment
Problem Description
After retrieving a case from a Hive instance with find_cases(), if you pass the case to create a new one the PAP flag is ignored and the new case always shows AMBER (2)
Steps to Reproduce
The text was updated successfully, but these errors were encountered: