Skip to content

Commit 5e41caa

Browse files
core: frontend: NetworkInterfacePriorityMenu: Increase timeout
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
1 parent 2b0a51d commit 5e41caa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

core/frontend/src/components/app/NetworkInterfacePriorityMenu.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ export default Vue.extend({
110110
await back_axios({
111111
method: 'get',
112112
url: `${ethernet.API_URL}/interfaces`,
113-
timeout: 5000,
113+
// Necessary since the system can hang with dhclient timeouts
114+
timeout: 10000,
114115
})
115116
.then((response) => {
116117
const interfaces = response.data as EthernetInterface[]

0 commit comments

Comments
 (0)