<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mirrors/arti.git/crates/tor-dirmgr/src/storage, branch arti-v1.2.5</title>
<subtitle>mirror of https://gitlab.torproject.org/tpo/core/arti
</subtitle>
<id>http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.2.5</id>
<link rel='self' href='http://git.dilluti0n.com/mirrors/arti.git/atom?h=arti-v1.2.5'/>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/'/>
<updated>2024-06-18T13:48:49Z</updated>
<entry>
<title>sqlite: (style) Use consistent casing on "ExtDocs"</title>
<updated>2024-06-18T13:48:49Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-06-18T13:48:49Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=83430d6b2da2cfc3d4dc6ea4c621c07d1f80357e'/>
<id>urn:sha1:83430d6b2da2cfc3d4dc6ea4c621c07d1f80357e</id>
<content type='text'>
SQL is case-insensitive, but it is still nice to be consistent.
</content>
</entry>
<entry>
<title>storage: Remove orphaned files from dir_blobs</title>
<updated>2024-06-12T15:26:12Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-06-12T15:26:12Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8a7e0b6225a1a70803457f4cd13bda0c4b47f024'/>
<id>urn:sha1:8a7e0b6225a1a70803457f4cd13bda0c4b47f024</id>
<content type='text'>
This patch removes files from dir_blobs if they are not referenced
from the database, or if their filenames are not valid UTF-8.
(If they were not valid UTF-8, we wouldn't have put them in our
database.)

To ensure that there can't be any race conditions, we only do this
when the file is a bit old.
</content>
</entry>
<entry>
<title>dirmgr: create temporary testing stores with correct paths.</title>
<updated>2024-06-12T15:12:01Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-06-12T15:12:01Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=06f9af078639d650df6c9b7add640b95cf772368'/>
<id>urn:sha1:06f9af078639d650df6c9b7add640b95cf772368</id>
<content type='text'>
Previously, we were putting an (optional) db.sql file and our blobs
into the same path, which is not what we do outside of our tests.
</content>
</entry>
<entry>
<title>dirmgr::storage: Enable foreign keys on our sqlite connections.</title>
<updated>2024-06-12T14:19:36Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-06-12T14:19:36Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=16f8757cc5173788563931c575b507a009ed0f28'/>
<id>urn:sha1:16f8757cc5173788563931c575b507a009ed0f28</id>
<content type='text'>
Without this, "ON DELETE CASCADE" will do nothing.

Part of fixing #1466.
</content>
</entry>
<entry>
<title>dirmgr::storage: Treat a missing blob file as an absent object.</title>
<updated>2024-06-12T14:18:20Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2024-06-12T13:51:17Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=8801c121ad79a7a59058aef69eff70c9537df1ee'/>
<id>urn:sha1:8801c121ad79a7a59058aef69eff70c9537df1ee</id>
<content type='text'>
Previously it was counted as a hard error, which would cause an
absolute failure to start if a blob file had been deleted improperly
-- for example, by a renegade cache-cleaner that had decided to
remove the largest files it could find.

Upon encountering a missing blob, we remove it from the database as
well: if we did not, then unavailable consensuses could still cause
us to try to fetch consensus diffs, because their rows would still
be present.

Fixes #1466.
</content>
</entry>
<entry>
<title>Mark tor_dirmgr::storage::Store::consensus_by_meta cfg(test)</title>
<updated>2024-04-25T14:22:32Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2024-04-24T18:04:09Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=cae1a320027aefbbcefcccabd18fba11f5ecfba6'/>
<id>urn:sha1:cae1a320027aefbbcefcccabd18fba11f5ecfba6</id>
<content type='text'>
This seems to be used only in tests, since at least 2022.
</content>
</entry>
<entry>
<title>tor-dirmgr: Work around an apparent regression in `time`.</title>
<updated>2023-02-17T19:36:19Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2023-02-17T19:24:31Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=2b515c8d257586f1cd6bc6c74a61ed0de60aab4f'/>
<id>urn:sha1:2b515c8d257586f1cd6bc6c74a61ed0de60aab4f</id>
<content type='text'>
Some code in our tests that worked fine with time 0.3.17 no
longer works with 0.3.19, despite the semver.

See https://github.com/time-rs/time/issues/552 for the upstream bug.
</content>
</entry>
<entry>
<title>Fix a bunch of "needless borrow" warnings on nightly</title>
<updated>2022-11-18T15:12:05Z</updated>
<author>
<name>Nick Mathewson</name>
<email>nickm@torproject.org</email>
</author>
<published>2022-11-18T15:12:05Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=d51162e55b19036528b4fafc1d4b15c8d9d23a04'/>
<id>urn:sha1:d51162e55b19036528b4fafc1d4b15c8d9d23a04</id>
<content type='text'>
It looks like, despite a few false starts, they've got this warning
right; there weren't any false positives.
</content>
</entry>
<entry>
<title>sqlite cache: Document reasoning about timestamps</title>
<updated>2022-11-08T13:00:51Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2022-11-08T13:00:51Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=93a150229a6d3b0fdd93dbd45262a433608dfd06'/>
<id>urn:sha1:93a150229a6d3b0fdd93dbd45262a433608dfd06</id>
<content type='text'>
As per
  https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/831#note_2851764
</content>
</entry>
<entry>
<title>bridge desc: Implement storage functions at the DB layer</title>
<updated>2022-11-04T19:08:32Z</updated>
<author>
<name>Ian Jackson</name>
<email>ijackson@chiark.greenend.org.uk</email>
</author>
<published>2022-11-04T19:06:07Z</published>
<link rel='alternate' type='text/html' href='http://git.dilluti0n.com/mirrors/arti.git/commit/?id=636bff31937fd5c8e0ce3331872ce1ed2ffc901a'/>
<id>urn:sha1:636bff31937fd5c8e0ce3331872ce1ed2ffc901a</id>
<content type='text'>
</content>
</entry>
</feed>
