luci-app-dockerman: change default to nil if data.blkio_weight is not defined 6035/head
authormyrlyn <jonathon.l.walker@gmail.com>
Tue, 18 Oct 2022 15:56:19 +0000 (16:56 +0100)
committermyrlyn <jonathon.l.walker@gmail.com>
Tue, 18 Oct 2022 15:56:19 +0000 (16:56 +0100)
Signed-off-by: Jonathon Walker <jonathon.l.walker@gmail.com>
applications/luci-app-dockerman/luasrc/model/cbi/dockerman/newcontainer.lua

index 37734ad0158dcda36d4e80f362b5412c3cbd7529..c9bb0daa0a7ee2b29298c623b54a4b0a5402019c 100644 (file)
@@ -720,7 +720,7 @@ m.handle = function(self, state, data)
        local memory = data.memory or 0
        local cpu_shares = data.cpu_shares or 0
        local cpus = data.cpus or 0
-       local blkio_weight = data.blkio_weight or 500
+       local blkio_weight = data.blkio_weight or nil
 
        local portbindings = {}
        local exposedports = {}