Do not override the default timeout.

This commit is contained in:
onurays 2020-03-13 15:01:40 +03:00 committed by Benoit Marty
parent dfc8e8ec4c
commit dbabe0232f
1 changed files with 0 additions and 1 deletions

View File

@ -29,7 +29,6 @@ internal interface AccountAPI {
* Ask the homeserver to change the password with the provided new password. * Ask the homeserver to change the password with the provided new password.
* @param params parameters to change password. * @param params parameters to change password.
*/ */
@Headers("CONNECT_TIMEOUT:60000", "READ_TIMEOUT:60000", "WRITE_TIMEOUT:60000")
@POST(NetworkConstants.URI_API_PREFIX_PATH_R0 + "account/password") @POST(NetworkConstants.URI_API_PREFIX_PATH_R0 + "account/password")
fun changePassword(@Body params: ChangePasswordParams): Call<Unit> fun changePassword(@Body params: ChangePasswordParams): Call<Unit>
} }