Skip to content

Commit

Permalink
Default LwM2m server will now wait until all retransmissions failed b…
Browse files Browse the repository at this point in the history
…efore timing out.
  • Loading branch information
Manuel Sangoi committed Jun 23, 2014
1 parent 0b6fe1b commit 73f0580
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public LwM2mServer(InetSocketAddress localAddress, ClientRegistry clientRegistry
RegisterResource rdResource = new RegisterResource(clientRegistry);
this.coapServer.add(rdResource);

CaliforniumBasedRequestHandler handler = new CaliforniumBasedRequestHandler(endpoint);
CaliforniumBasedRequestHandler handler = new CaliforniumBasedRequestHandler(endpoint, null, 0);
// register the request handler as listener in order to cancel
// observations and free up resources when clients unregister
clientRegistry.addListener(handler);
Expand Down

0 comments on commit 73f0580

Please sign in to comment.