Skip to content

Commit e613570

Browse files
core: frontend: EthernetUpdater: Increase timeout
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
1 parent a1150b6 commit e613570

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/frontend/src/components/ethernet/EthernetUpdater.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ export default Vue.extend({
2828
await back_axios({
2929
method: 'get',
3030
url: `${ethernet.API_URL}/ethernet`,
31-
timeout: 5000,
31+
// Necessary since the system can hang with dhclient timeouts
32+
timeout: 10000,
3233
})
3334
.then((response) => {
3435
ethernet.setInterfaces(response.data)

0 commit comments

Comments
 (0)