Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit 1507a4b

Browse files
committed
WIP #3 working for simple case
1 parent 06f3113 commit 1507a4b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/e2e/e2e.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ def random_id():
188188
remiro_config = remiro_config_template.format(
189189
delete_on_set="false",
190190
delete_on_get="false",
191-
src_addr='"{}:{}"'.format(redis_src_ip, redis_src_port),
192-
dst_addr='"{}:{}"'.format(redis_dst_ip, redis_dst_port),
191+
src_addr='"{}:{}"'.format(redis_src_ip, 6379),
192+
dst_addr='"{}:{}"'.format(redis_dst_ip, 6379),
193193
)
194194
print(remiro_config)
195195

@@ -201,6 +201,7 @@ def random_id():
201201
remiro_config_file = open(os.path.join(temp_dir.name, "config.toml"), mode="w+")
202202
try:
203203
remiro_config_file.writelines(remiro_config)
204+
remiro_config_file.close()
204205
print("remiro_config_file: ", remiro_config_file.name)
205206
# remiro_config_file.name = "config.toml"
206207

0 commit comments

Comments
 (0)