-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added-late_CI_FIXES #117
added-late_CI_FIXES #117
Conversation
Squashed commit of the following: commit 770f283 Author: mix irving <[email protected]> Date: Thu May 18 14:54:09 2023 +1200 blah commit 9e76b8e Author: mix irving <[email protected]> Date: Thu May 18 14:39:01 2023 +1200 rm ssb-caps, use randomBytes, add timeout for final test commit ffc89c4 Author: mix irving <[email protected]> Date: Thu May 18 14:16:09 2023 +1200 disable legacy-replication commit 61ad664 Author: mix irving <[email protected]> Date: Thu May 18 10:38:11 2023 +1200 add licenses to new files commit 38e8eeb Author: mix irving <[email protected]> Date: Thu May 18 10:36:35 2023 +1200 add legacyReplication commit 3dc4eb6 Author: mix irving <[email protected]> Date: Thu May 18 10:16:55 2023 +1200 fixups commit 5dacf0a Author: mix irving <[email protected]> Date: Thu May 18 09:54:41 2023 +1200 tests: log for when ebt fails to replicate commit 25d5c0f Author: Jacob Karlsson <[email protected]> Date: Fri May 12 12:12:46 2023 +0200 1.0.1 commit 8c896ad Author: Jacob Karlsson <[email protected]> Date: Fri May 12 12:12:34 2023 +0200 Include all lib files in module commit 0714473 Author: Jacob Karlsson <[email protected]> Date: Fri May 12 11:52:42 2023 +0200 1.0.0
New dependency changes detected. Learn more about Socket for GitHub ↗︎ 👍 No new dependency issues detected in pull request Bot CommandsTo ignore an alert, reply with a comment starting with Pull request alert summary
📊 Modified Dependency Overview: 🚮 Removed packages: [email protected] |
20ccc90
to
c76ead4
Compare
8567e84
to
4c42d82
Compare
const clocks = await Promise.all([ | ||
p(person1.getVectorClock)(), | ||
p(person2.getVectorClock)(), | ||
]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This replicate function will probably have the same bug that we ran into in #106 (comment)
I think this might break if it's bob that creates the group.
@@ -45,21 +85,8 @@ function setupFeedRequests(person1, person2) { | |||
]), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"This is the list of feedIds that we should care about in our vector clock" mix says
added a comment to replicate in the other pr after merging |
All I can think of is how cute these boxes are. |
haha @staltz I see you're also a fan of command line logging |
Wanted to get this passing reliably. Also changes
replicate
to "replicate all" by default.The function I wrote goes through each pair of peers in a set (with repetition). Turns our the repetition doesn't cost anything to do, because the vector clock check is so dang fast
alice-david
is slow the first time, butdavid-alice
later is almost instantaneous.alice-bob
andbob-alice
are both slow ... this is because in between these alice has picked up more feeds from carol and david (I think?)