You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
returnErr(anyhow!("The aggregator discoverer must be provided to build the client with automatic discovery using the 'with_aggregator_discoverer' function").into());
.ok_or(anyhow!("No aggregator was available through discovery"))?
419
+
.into()
420
+
}
421
+
None => {
422
+
returnErr(anyhow!("The aggregator discoverer must be provided to build the client with automatic discovery using the 'with_aggregator_discoverer' function").into());
423
+
}
403
424
}
404
-
},
425
+
}
405
426
};
406
427
let endpoint_url = Url::parse(&aggregator_endpoint).with_context(|| {
407
428
format!("Invalid aggregator endpoint, it must be a correctly formed url: '{aggregator_endpoint}'")
0 commit comments