- May 13, 2022
-
-
Ian Jackson authored
These are needed to support the code which is moving.
-
Ian Jackson authored
That's where this definitions is now. This test ought to have been moved in Move default_config_file() into arti-client
-
Ian Jackson authored
config load: Move mistrust checking to load() See merge request !504
-
Ian Jackson authored
-
Ian Jackson authored
As per #472 Experimentation convinced me the Mistrust should be within the ConfigurationSources.
-
Ian Jackson authored
This is a benchmarking tool, and fs-mistrust doesn't like the permissions in our CI. The env var ARTI_FS_DISABLE_PERMISSION_CHECKS is (of course) specific to arti. Maybe it should be honoured here, or this should be done via the config files. But disabling this is fine for now.
-
- May 12, 2022
-
-
Nick Mathewson authored
Delete tor_dirmgr::Error::BadNetworkConfig See merge request !506
-
Nick Mathewson authored
Make the example config file into a template and move it to arti See merge request !503
-
Ian Jackson authored
This was anomalous, in that it contains &'static str, rather than a proper nested error (eg a config::ConfigError, maybe). But in fact it tursn out it is now not constructed. The last construction site was removed a long time ago in Use derive_builder for Authority and FallbackDir.
-
Ian Jackson authored
I have Plans for this macro. In particular: * I have a wip branch which tests that the Builder can be deserialised from an empty config (ie, that config reading of a config with a blank section for this item works). * I think we should autogenerate $Config::builder(), and promote that, rather than $ConfigBuilder::default(). This macro could do that.
-
Ian Jackson authored
-
Ian Jackson authored
This macro is kind of derive-y. Also it has a test in it, and failing to call it could allow bugs to exist, as well as missing bits of API. Putting it next to the structs makes it easy to see that it's actually been called.
-
Nick Mathewson authored
Teach DirMgr to use slightly untimely directories Closes #467 and #412 See merge request !500
-
Ian Jackson authored
-
Ian Jackson authored
-
Ian Jackson authored
-
Ian Jackson authored
We expect that a user may copy this file and uses it as a starting point for their own configuration. When they do that, we don't want them to freeze the default config in time. Instead, we can expect them to uncomment settings they wish to change. Then when they upgrade arti, *other* settings will get the new defaults, which I think is right.
-
Ian Jackson authored
Now, git-grep '^#[^ ]' crates/arti/src/arti-example-config.toml has no ouptut. This prepares us for the next commit.
-
Ian Jackson authored
-
Ian Jackson authored
The defaults are built into the code. This is a doc-commented example file, not the primary specification of what the defaults are.
-
Ian Jackson authored
-
Ian Jackson authored
This is redundant, because the defaults have to be supplied by the config builders (usually via builder default attributes). That this is actually done and correct is tested by the `default_config()` test case in arti/src/cfg.rs.
-
Ian Jackson authored
Add this test even though our construction of the Default and Builder ought to trivially ensure that it's true.
-
Nick Mathewson authored
-
Nick Mathewson authored
Add correct serde(default) attrs for humantime_serde::option See merge request !502
-
Ian Jackson authored
Discovered by a test case in my local tree. The test case was macro-generated by an extension of impl_standard_builder (which macro istself currently awaiting review, !499) Have also sent an MR to update the upstream docs https://github.com/jean-airoldie/humantime-serde/pull/8
-
- May 11, 2022
-
-
Ian Jackson authored
The type of ret.map_err(codec_err_to_chan)? is (). ISTM that writing `let () = ` makes it clear that there is nothing there, but the lint forbids this. This lint is warn by default and trips here for me on current nightly. It seems wrong to me. We should be able to make it clear to the reader that there is nothing here - note how this differs from the lines below where Ready contains msg. A let () binding is a good way to do that. I think the lint allow ought to be added everywhere, but that doesn't seem easy right now - see this issue about maint/add_warning: #469
-
Ian Jackson authored
This does involve unwrap, but of course that can't fail unless the formats fail, which would already panic (that's implied by format!).
-
Ian Jackson authored
-
Ian Jackson authored
-
Ian Jackson authored
-
Ian Jackson authored
This does not know anything about arti, only about TOML and Config. Code motion, plus necessary import adjustments.
-
Nick Mathewson authored
-
Nick Mathewson authored
If we're happy with a directory from 3 days ago, we should say "if-modified-since 3 days ago". This patch is larger than I'd like, since I had to add &DirMgrConfig as an argument to the functions that make a consensus request. Closes #467.
-
Nick Mathewson authored
In our status reporting code, we consider an expired-but-still-usable directory still bootstrapped, but not 100% bootstrapped.
-
Nick Mathewson authored
Since we want to be willing to use older consensuses, we don't necessarily want to reset a download just because the consensus is expired. This new behavior isn't ideal either; I've added a TODO that relates to #433. Related of #412
-