We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8a225d commit 301891cCopy full SHA for 301891c
src/api/createDeviceAccreditedSystem/src/v1/steps.py
@@ -94,7 +94,8 @@ def create_as_device(data, cache) -> Device:
94
# Ticket PI-666 adds ASID generation. This will need to be sent across in the arguments instead of an empty string.
95
device_payload = payload.dict(exclude={"questionnaire_responses"})
96
return product.create_device(
97
- EprNameTemplate.AS_DEVICE.format(party_key=party_key, asid=""), **device_payload
+ name=EprNameTemplate.AS_DEVICE.format(party_key=party_key, asid=""),
98
+ **device_payload
99
)
100
101
0 commit comments