We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
namemapping API is not retrieving all elements
curl http://localhost:5111/v1/namemappings
The text was updated successfully, but these errors were encountered:
Hi @AlvaroVega , I have tried with API [Name Mapping] and it is returning complete information as expected.
below is the content of name-mappings.conf file
{ "serviceMappings": [ { "originalService": "mysqlservice", "newService": "mysqlservice_new", "servicePathMappings": [ { "originalServicePath": "/mysqlservicepath", "newServicePath": "/mysqlservice_new", "entityMappings": [ { "originalEntityId": "Room2", "originalEntityType": "Room", "newEntityId": "Room2_new", "newEntityType": "Room_new", "attributeMappings": [ { "originalAttributeName": "temperature", "originalAttributeType": "Float", "newAttributeName": "temperature_new", "newAttributeType": "string" } ] } ] } ] } ] }
and response I am getting from http://{host}:{port}/v1/namemappings -
{ "success": "true", "result": { "serviceMappings": [ { "originalService": "mysqlservice", "newService": "mysqlservice_new", "servicePathMappings": [ { "originalServicePath": "/mysqlservicepath", "newServicePath": "/mysqlservice_new", "entityMappings": [ { "originalEntityId": "Room2", "originalEntityType": "Room", "newEntityId": "Room2_new", "newEntityType": "Room_new", "attributeMappings": [ { "originalAttributeName": "temperature", "originalAttributeType": "Float", "newAttributeName": "temperature_new", "newAttributeType": "string" } ] } ] } ] } ] } }
Is there any specific case where API [Name Mapping] returning partial information? please let me know replication steps for same.
Thanks
Sorry, something went wrong.
At the present moment, we are not prioritizing namemapping related issues. I'd suggest you to analyse another issue. Thanks!
No branches or pull requests
namemapping API is not retrieving all elements
curl http://localhost:5111/v1/namemappings
The text was updated successfully, but these errors were encountered: