How to change value of 'Read timeout' of Eclipse's Update Manager?

后端 未结 5 1192
既然无缘
既然无缘 2021-02-08 00:37

How to change value of \'Read timeout\' of Eclipse\'s Update Manager?

I have slow internet connection and I cannot install any plugin, because Eclipse\'s Update manager

5条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-08 01:10

    As Frank mentioned you can set the timeout options in the eclipse.ini, here's the documentation.

    "use -DpropName=propValue as a VM argument to the Java VM, set the desired property in the config.ini file in the appropriate configuration area"

    I set the following to get round my timeout issue:

    -Dorg.eclipse.ecf.provider.filetransfer.retrieve.closeTimeout=3000
    -Dorg.eclipse.ecf.provider.filetransfer.retrieve.readTimeout=3000
    

提交回复
热议问题