Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion folding/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .protocol import JobSubmissionSynapse
from .validators.protein import Protein

__version__ = "1.2.2"
__version__ = "1.2.3"
version_split = __version__.split(".")
__spec_version__ = (
(10000 * int(version_split[0]))
Expand Down
7 changes: 4 additions & 3 deletions folding/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
from folding.utils.logger import logger
from folding.utils.logger import setup_file_logging, add_events_level


def check_config(cls, config: "bt.Config"):
r"""Checks/validates the config namespace object."""

full_path = os.path.expanduser(
"{}/{}/{}/netuid{}/{}".format(
"~/.bittensor/miners",
Expand All @@ -43,7 +44,7 @@ def check_config(cls, config: "bt.Config"):
add_events_level()
setup_file_logging(
os.path.join(config.neuron.full_path, "events.log"),
config.neuron.events_retention_size
config.neuron.events_retention_size,
)


Expand Down Expand Up @@ -318,7 +319,7 @@ def add_validator_args(cls, parser):
"--neuron.ping_timeout",
type=float,
help="Controls the timeout for the PingSynapse call",
default=3,
default=45,
)

parser.add_argument(
Expand Down