diff options
Diffstat (limited to 'bitbake/lib/bb/monitordisk.py')
| -rw-r--r-- | bitbake/lib/bb/monitordisk.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/monitordisk.py b/bitbake/lib/bb/monitordisk.py index 203c405044..dff57ad878 100644 --- a/bitbake/lib/bb/monitordisk.py +++ b/bitbake/lib/bb/monitordisk.py | |||
| @@ -141,7 +141,7 @@ def getInterval(configuration): | |||
| 141 | spaceDefault = 50 * 1024 * 1024 | 141 | spaceDefault = 50 * 1024 * 1024 |
| 142 | inodeDefault = 5 * 1024 | 142 | inodeDefault = 5 * 1024 |
| 143 | 143 | ||
| 144 | interval = configuration.getVar("BB_DISKMON_WARNINTERVAL", True) | 144 | interval = configuration.getVar("BB_DISKMON_WARNINTERVAL") |
| 145 | if not interval: | 145 | if not interval: |
| 146 | return spaceDefault, inodeDefault | 146 | return spaceDefault, inodeDefault |
| 147 | else: | 147 | else: |
| @@ -179,7 +179,7 @@ class diskMonitor: | |||
| 179 | self.enableMonitor = False | 179 | self.enableMonitor = False |
| 180 | self.configuration = configuration | 180 | self.configuration = configuration |
| 181 | 181 | ||
| 182 | BBDirs = configuration.getVar("BB_DISKMON_DIRS", True) or None | 182 | BBDirs = configuration.getVar("BB_DISKMON_DIRS") or None |
| 183 | if BBDirs: | 183 | if BBDirs: |
| 184 | self.devDict = getDiskData(BBDirs, configuration) | 184 | self.devDict = getDiskData(BBDirs, configuration) |
| 185 | if self.devDict: | 185 | if self.devDict: |
