Skip to content

Commit

Permalink
Merge pull request #16 from Patrowl/develop
Browse files Browse the repository at this point in the history
1.2.1: ARS-600 fix
  • Loading branch information
sebastien-powl authored Oct 28, 2024
2 parents 86cde4e + 563f381 commit e73f037
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PatrowlEnginesUtils/PatrowlEngine.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def _engine_is_busy(self):
# TODO rewrite function later
if self.scans[scan_id]["status"] in ["SCANNING", "STARTED"]:
scans_count += 1
if scans_count >= APP_MAXSCANS:
if scans_count >= self.max_scans:
return True
return False

Expand Down
2 changes: 1 addition & 1 deletion PatrowlEnginesUtils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


__title__ = 'patrowl_engine_utils'
__version__ = '1.2.0'
__version__ = '1.2.1'
__author__ = 'Nicolas MATTIOCCO'
__license__ = 'AGPLv3'
__copyright__ = 'Copyright (C) 2018-2021 Nicolas Mattiocco - @MaKyOtOx'
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.0
1.2.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='PatrowlEnginesUtils',
version='1.2.0',
version='1.2.1',
description='Common classes for PatrowlEngines',
url='https://github.com/Patrowl/PatrowlEnginesUtils',
author='Nicolas Mattiocco',
Expand Down

0 comments on commit e73f037

Please sign in to comment.