File tree Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Expand file tree Collapse file tree 7 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ impl Bootstrapper {
42
42
pipeline. register_stage ( spawn_stage (
43
43
worker,
44
44
gasket:: runtime:: Policy {
45
- tick_timeout : Some ( Duration :: from_secs ( 600 ) ) ,
45
+ tick_timeout : Some ( Duration :: from_secs ( 6000 ) ) ,
46
46
..Default :: default ( )
47
47
} ,
48
48
Some ( "enrich-skip" ) ,
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ pub mod address_by_asset;
20
20
#[ cfg( feature = "unstable" ) ]
21
21
pub mod address_by_txo;
22
22
#[ cfg( feature = "unstable" ) ]
23
+ pub mod addresses_by_stake;
24
+ #[ cfg( feature = "unstable" ) ]
23
25
pub mod asset_holders_by_asset_id;
24
26
#[ cfg( feature = "unstable" ) ]
25
27
pub mod balance_by_address;
@@ -39,8 +41,6 @@ pub mod tx_count_by_native_token_policy_id;
39
41
pub mod utxo_by_stake;
40
42
#[ cfg( feature = "unstable" ) ]
41
43
pub mod utxos_by_asset;
42
- #[ cfg( feature = "unstable" ) ]
43
- pub mod addresses_by_stake;
44
44
45
45
#[ derive( Deserialize ) ]
46
46
#[ serde( tag = "type" ) ]
@@ -155,7 +155,7 @@ impl Bootstrapper {
155
155
pipeline. register_stage ( spawn_stage (
156
156
worker,
157
157
gasket:: runtime:: Policy {
158
- tick_timeout : Some ( Duration :: from_secs ( 600 ) ) ,
158
+ tick_timeout : Some ( Duration :: from_secs ( 6000 ) ) ,
159
159
..Default :: default ( )
160
160
} ,
161
161
Some ( "reducers" ) ,
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ impl Bootstrapper {
60
60
self . output ,
61
61
) ,
62
62
gasket:: runtime:: Policy {
63
- tick_timeout : Some ( Duration :: from_secs ( 600 ) ) ,
63
+ tick_timeout : Some ( Duration :: from_secs ( 6000 ) ) ,
64
64
bootstrap_retry : gasket:: retries:: Policy {
65
65
max_retries : 20 ,
66
66
backoff_factor : 2 ,
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ impl Bootstrapper {
82
82
self . output ,
83
83
) ,
84
84
gasket:: runtime:: Policy {
85
- tick_timeout : Some ( Duration :: from_secs ( 600 ) ) ,
85
+ tick_timeout : Some ( Duration :: from_secs ( 6000 ) ) ,
86
86
bootstrap_retry : gasket:: retries:: Policy {
87
87
max_retries : 20 ,
88
88
backoff_factor : 2 ,
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ impl Bootstrapper {
90
90
pipeline. register_stage ( spawn_stage (
91
91
worker,
92
92
gasket:: runtime:: Policy {
93
- tick_timeout : Some ( Duration :: from_secs ( 600 ) ) ,
93
+ tick_timeout : Some ( Duration :: from_secs ( 6000 ) ) ,
94
94
bootstrap_retry : gasket:: retries:: Policy {
95
95
max_retries : 20 ,
96
96
backoff_unit : Duration :: from_secs ( 1 ) ,
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ impl Bootstrapper {
76
76
pipeline. register_stage ( spawn_stage (
77
77
worker,
78
78
gasket:: runtime:: Policy {
79
- tick_timeout : Some ( Duration :: from_secs ( 600 ) ) ,
79
+ tick_timeout : Some ( Duration :: from_secs ( 6000 ) ) ,
80
80
bootstrap_retry : gasket:: retries:: Policy {
81
81
max_retries : 20 ,
82
82
backoff_unit : Duration :: from_secs ( 1 ) ,
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ impl Bootstrapper {
49
49
pipeline. register_stage ( spawn_stage (
50
50
worker,
51
51
gasket:: runtime:: Policy {
52
- tick_timeout : Some ( Duration :: from_secs ( 600 ) ) ,
52
+ tick_timeout : Some ( Duration :: from_secs ( 6000 ) ) ,
53
53
..Default :: default ( )
54
54
} ,
55
55
Some ( "skip" ) ,
You can’t perform that action at this time.
0 commit comments