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
From (https://www.eclipse.org/lists/leshan-dev/msg01023.html)
In commit fe58a35 ("BootstrapDelete Request can target "none root" path.") has been added possibility to delete "none-root" objects during bootstrap procedure
As I understand this change must be synchronized with method org.eclipse.leshan.server.californium.impl.CoapRequestBuilder.visit(BootstrapDeleteRequest request)
where COAP request is being formed :
@Overridepublicvoidvisit(BootstrapDeleteRequestrequest) {
coapRequest = Request.newDelete();
coapRequest.setConfirmable(true);
EndpointContextcontext = EndpointContextUtil.extractContext(destination);
coapRequest.setDestinationContext(context);
// here probably we have to call setTarget(coapRequest, request.getPath()); // by analogue with rest methods of visitor
}
The text was updated successfully, but these errors were encountered:
From (https://www.eclipse.org/lists/leshan-dev/msg01023.html)
In commit fe58a35 ("BootstrapDelete Request can target "none root" path.") has been added possibility to delete "none-root" objects during bootstrap procedure
As I understand this change must be synchronized with method
org.eclipse.leshan.server.californium.impl.CoapRequestBuilder.visit(BootstrapDeleteRequest request)
where COAP request is being formed :
The text was updated successfully, but these errors were encountered: