Skip to content

Commit

Permalink
Redis now allows for more memory usage
Browse files Browse the repository at this point in the history
  • Loading branch information
billschereriii committed Feb 14, 2023
1 parent 913bdd0 commit b214101
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ def get_smartsim_error_db_configs():
],
"maxmemory": [
"29GG", # invalid memory form
str(2 ** 65) + "gb", # memory is too much
#str(2 ** 65) + "gb", # memory is too much
"3.5gb", # invalid memory form
],
"maxclients": [
Expand Down
1 change: 0 additions & 1 deletion tests/test_orc_config_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def test_config_methods(dbutils, local_db):
for key, value_list in ss_error_configs.items():
for value in value_list:
with pytest.raises(SmartSimError):
print(key, value)
local_db.set_db_conf(key, value)


Expand Down

0 comments on commit b214101

Please sign in to comment.