Skip to content

Commit

Permalink
Merge pull request #120 from DIG-Network/release/v0.0.1-alpha.126
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.126
  • Loading branch information
MichaelTaylor3D authored Oct 7, 2024
2 parents 5af8346 + d0a4d30 commit 940b21c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.1-alpha.126](https://github.com/DIG-Network/dig-propagation-server/compare/v0.0.1-alpha.125...v0.0.1-alpha.126) (2024-10-07)

### [0.0.1-alpha.125](https://github.com/DIG-Network/dig-propagation-server/compare/v0.0.1-alpha.124...v0.0.1-alpha.125) (2024-10-07)

### [0.0.1-alpha.124](https://github.com/DIG-Network/dig-propagation-server/compare/v0.0.1-alpha.123...v0.0.1-alpha.124) (2024-10-07)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dig-propagation-server",
"version": "0.0.1-alpha.125",
"version": "0.0.1-alpha.126",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/sync_stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const processPeer = async (peerIp: string, storeId: string, rootHash: string, ch
console.log(`Dig Peer ${peerIp} already has rootHash ${rootHash}. Marking as checked.`);
checkedPeers.add(peerIp); // Mark as checked only if peer has the rootHash
} else {
console.log(`Dig Peer ${peerIp} does not have rootHash ${rootHash}. Pinging update.`);
console.log(`Dig Peer ${peerIp} does not have ${storeId}-${rootHash}. Pinging update.`);
await withTimeout( digPeer.propagationServer.pingUpdate(rootHash), 15000, `Dig Peer: ${peerIp} took to long to respond to ping request`);
// Do NOT mark as checked if peer lacks the rootHash
}
Expand Down

0 comments on commit 940b21c

Please sign in to comment.