On 26/05/13 08:45, Ben Chan wrote:We recently updated most plugins and the generic implementation to wait
> This patch increases the number of retries, from 4 to 10, for connection
> status check during a connection / disconnection request, which handles
> some scenario when the connection / disconnection request takes more
> than 5 seconds to complete.
up to 60s to get the connection up. Do you really think that 10s is enough?
Aleksander
> ---
> plugins/novatel/mm-broadband-bearer-novatel-lte.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/plugins/novatel/mm-broadband-bearer-novatel-lte.c b/plugins/novatel/mm-broadband-bearer-novatel-lte.c
> index 31c5650..677bc3c 100644
> --- a/plugins/novatel/mm-broadband-bearer-novatel-lte.c
> +++ b/plugins/novatel/mm-broadband-bearer-novatel-lte.c
> @@ -281,7 +281,7 @@ connect_3gpp (MMBroadbandBearer *self,
> callback,
> user_data,
> connect_3gpp);
> - ctx->retries = 4;
> + ctx->retries = 10;
>
> /* Get a 'net' data port */
> ctx->data = "" (MM_BASE_MODEM (modem),
> @@ -333,7 +333,7 @@ detailed_disconnect_context_new (MMBroadbandBearer *self,
> callback,
> user_data,
> detailed_disconnect_context_new);
> - ctx->retries = 4;
> + ctx->retries = 10;
> return ctx;
> }
>
>
--