File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
from .protocol import JobSubmissionSynapse
2
2
from .validators .protein import Protein
3
3
4
- __version__ = "1.2.2 "
4
+ __version__ = "1.2.3 "
5
5
version_split = __version__ .split ("." )
6
6
__spec_version__ = (
7
7
(10000 * int (version_split [0 ]))
Original file line number Diff line number Diff line change 23
23
from folding .utils .logger import logger
24
24
from folding .utils .logger import setup_file_logging , add_events_level
25
25
26
+
26
27
def check_config (cls , config : "bt.Config" ):
27
28
r"""Checks/validates the config namespace object."""
28
-
29
+
29
30
full_path = os .path .expanduser (
30
31
"{}/{}/{}/netuid{}/{}" .format (
31
32
"~/.bittensor/miners" ,
@@ -43,7 +44,7 @@ def check_config(cls, config: "bt.Config"):
43
44
add_events_level ()
44
45
setup_file_logging (
45
46
os .path .join (config .neuron .full_path , "events.log" ),
46
- config .neuron .events_retention_size
47
+ config .neuron .events_retention_size ,
47
48
)
48
49
49
50
@@ -318,7 +319,7 @@ def add_validator_args(cls, parser):
318
319
"--neuron.ping_timeout" ,
319
320
type = float ,
320
321
help = "Controls the timeout for the PingSynapse call" ,
321
- default = 3 ,
322
+ default = 45 ,
322
323
)
323
324
324
325
parser .add_argument (
You can’t perform that action at this time.
0 commit comments