Skip to content

Commit bc97342

Browse files
authored
fix: fix log ClientConfig error caused by __repr__ method (#172)
1 parent 7e3fc85 commit bc97342

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infinistore/lib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __repr__(self):
6767
return (
6868
f"ServerConfig(service_port={self.service_port}, "
6969
f"log_level='{self.log_level}', host_addr='{self.host_addr}', "
70-
f"connection_type='{self.connection_type.name}')"
70+
f"connection_type='{self.connection_type}')"
7171
f"dev_name='{self.dev_name}', ib_port={self.ib_port}, link_type='{self.link_type}'"
7272
)
7373

0 commit comments

Comments
 (0)