Skip to content

Commit

Permalink
fix: port default integer
Browse files Browse the repository at this point in the history
  • Loading branch information
saurabh6790 committed Sep 4, 2024
1 parent 8bb9bcb commit 9f7d1ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agent/bench.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(self, name, server, mounts=None):
self.directory, "sites", "common_site_config.json"
)
self.host = self.config.get("db_host", "localhost")
self.db_port = self.config.get("db_port", "3306")
self.db_port = self.config.get("db_port", 3306)
self.docker_image = self.bench_config.get("docker_image")
self.mounts = mounts
if not (
Expand Down

0 comments on commit 9f7d1ac

Please sign in to comment.