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
In cell #6 of the 'working with standard models' notebook, we have a call to :
# Get the link to the top-level category
getGlossaryMoreInfoURLRoot = cocoMDS2PlatformURL + '/servers/' + cocoMDS2Name + '/open-metadata/common-services/asset-consumer/connected-asset/users/' + erinsUserId + '/referenceables/'
getGlossaryMoreInfoURLTail = '/more-information?elementStart=0&maxElements=50'
However this fails with a 404 as this endpoint has now changed to
# Get the link to the top-level category
getGlossaryMoreInfoURLRoot = cocoMDS2PlatformURL + '/servers/' + cocoMDS2Name + '/open-metadata/framework-services/asset-consumer/connected-asset/users/' + erinsUserId + '/referenceables/'
getGlossaryMoreInfoURLTail = '/more-information?elementStart=0&maxElements=50'
ie for this api call common-services -> framework-services in Egeria 4.0
The text was updated successfully, but these errors were encountered:
There are many other calls to connected-asset especially in common-functions, which all of the notebooks except this one use. These still refer to common-services
In cell #6 of the 'working with standard models' notebook, we have a call to :
However this fails with a 404 as this endpoint has now changed to
ie for this api call common-services -> framework-services in Egeria 4.0
The text was updated successfully, but these errors were encountered: