Skip to content

Commit

Permalink
fix stupid mistake - bump
Browse files Browse the repository at this point in the history
  • Loading branch information
alonre24 committed Nov 21, 2023
1 parent 2f14fac commit 6f490c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RLTest/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def __init__(self, testName=None, testDescription=None, module=None,
self.clusterNodeTimeout = clusterNodeTimeout if clusterNodeTimeout else Defaults.cluster_node_timeout
self.port = Defaults.port
self.enableDebugCommand = enableDebugCommand if enableDebugCommand is not None else Defaults.enable_debug_command
self.enableProtectedConfigs = enableProtectedConfigs is not None if enableProtectedConfigs\
self.enableProtectedConfigs = enableProtectedConfigs if enableProtectedConfigs is not None\
else Defaults.enable_protected_configs
self.enableModuleCommand = enableModuleCommand if enableModuleCommand is not None else Defaults.enable_module_command

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "RLTest"
version = "0.7.3"
version = "0.7.4"
description="Redis Modules Test Framework, allow to run tests on redis and modules on a variety of environments"
authors = ["Redis, Inc. <oss@redis.com>"]
license = "BSD-3-Clause"
Expand Down

0 comments on commit 6f490c5

Please sign in to comment.