We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 483d805 commit 3f9359bCopy full SHA for 3f9359b
CHANGELOG.md
@@ -10,6 +10,10 @@
10
when no data was found for the SLO
11
* Bump dependencies
12
13
+# Fixed
14
+
15
+* Allow for empty route action block in load balancer actions
16
17
## [0.32.1][] - 2024-05-31
18
19
[0.32.1]: https://github.com/chaostoolkit-incubator/chaostoolkit-google-cloud-platform/compare/0.32.0...0.32.1
chaosgcp/lb/__init__.py
@@ -79,7 +79,7 @@ def get_route_action(
79
)
80
raise ActivityFailed("failed to match the appropriate path matcher")
81
82
- if not route_action:
+ if route_action is None:
83
logger.debug(
84
f"Failed to find path '{target_path}' in path matcher '{target_name}'"
85
0 commit comments