Skip to content
Snippets Groups Projects
Commit 5bbd08b6 authored by Jiří Ježek's avatar Jiří Ježek
Browse files

Merge branch 'fix-extend-connection-timeout-to-fix-false-possitive' into 'master'

Extend connection timeout for tcp ping to fix false positives unreachable ip addresses

See merge request !24
parents c0e1eeda 7677fcc3
Branches
Tags
1 merge request!24Extend connection timeout for tcp ping to fix false positives unreachable ip addresses
Pipeline #622147 passed
...@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ...@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [1.6.4] - 2025-05-07
### Fix
- Extend connection timeout when trzing tcp ping
## [1.6.3] - 2025-05-05 ## [1.6.3] - 2025-05-05
### Fix ### Fix
- Fix false positive unreachable ping on imcp security group rule - Fix false positive unreachable ping on imcp security group rule
......
...@@ -45,7 +45,7 @@ class IPAddressStatus(enum.Enum): ...@@ -45,7 +45,7 @@ class IPAddressStatus(enum.Enum):
class Constants: class Constants:
''' Miscellaneous constant variables ''' ''' Miscellaneous constant variables '''
PING_TIMEOUT = 0.5 PING_TIMEOUT = 0.5
CONNECTION_TIMEOUT = 1 CONNECTION_TIMEOUT = 2
PORTS_COMMON = [22, 3389, 80, 443] PORTS_COMMON = [22, 3389, 80, 443]
PORTS_ADDITIONAL_NUM = 2 PORTS_ADDITIONAL_NUM = 2
ICMP_PROTOCOLS = ['any', 'icmp', 'ipv6-icmp'] ICMP_PROTOCOLS = ['any', 'icmp', 'ipv6-icmp']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment