Skip to content
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

Release 1.7.18 #1188

Merged
merged 48 commits into from
Oct 18, 2024
Merged
Changes from 2 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
10e8854
chore: Updating npm dev dependencies
ChiaAutomation Aug 16, 2024
b5c863c
feat: added sync registries logging
wwills2 Sep 18, 2024
473b590
feat: converted logger to ES module for use with config-loader
wwills2 Sep 18, 2024
70a06ea
Update package.json
wwills2 Sep 18, 2024
6d95bab
feat: sql logging hashes queries
wwills2 Sep 19, 2024
c965a53
feat: additional logging
wwills2 Sep 19, 2024
b8e2529
feat: check to reset org generations if cadt is ahead of DL
wwills2 Sep 20, 2024
288c7c6
Merge pull request #1172 from Chia-Network/debug-logging
wwills2 Sep 20, 2024
fc80ccd
Update README.md
erickch123 Sep 22, 2024
0408228
feat: minor logging improvements
wwills2 Sep 23, 2024
dac58bc
Use GitHub Glue Action instead of curl
Starttoaster Sep 24, 2024
1ab230b
Merge pull request #1185 from Chia-Network/glue
TheLastCicada Sep 24, 2024
0f14b1d
feat: minor logging improvements
wwills2 Sep 23, 2024
57b2b0f
Merge remote-tracking branch 'origin/fix/reorg-negative-generations' …
wwills2 Sep 24, 2024
a89fcdd
feat: added query logger
wwills2 Sep 24, 2024
906e5e0
Merge pull request #1178 from erickch123/develop
TheLastCicada Sep 24, 2024
b6c0b4c
feat: added task to check subscriptions and resubscribe to missing or…
wwills2 Oct 3, 2024
93cfeea
feat: added task to check subscriptions and resubscribe to missing or…
wwills2 Oct 3, 2024
05db6c3
Merge remote-tracking branch 'origin/org-table-auto-resubscription' i…
wwills2 Oct 3, 2024
0d428de
Merge pull request #1175 from Chia-Network/fix/reorg-negative-generat…
wwills2 Oct 3, 2024
da42348
feat: named organization in log output
wwills2 Oct 3, 2024
aef3a42
feat: added migration task checks
wwills2 Oct 3, 2024
d8fcf7b
Merge pull request #1187 from Chia-Network/org-table-auto-resubscription
wwills2 Oct 3, 2024
b3e8fe9
chore: version bump
TheLastCicada Oct 4, 2024
ac9b560
Merge pull request #1189 from Chia-Network/1718
TheLastCicada Oct 4, 2024
a37775c
feat: sync-registries task refinements
wwills2 Oct 8, 2024
2e8b8f0
feat: sync-registries task refinements
wwills2 Oct 9, 2024
293bf14
fix: failing tests due to zero vs one based generation count mismatch
wwills2 Oct 9, 2024
ca8d15c
fix: failing tests due to zero vs one based generation count mismatch
wwills2 Oct 9, 2024
c379f3c
Merge remote-tracking branch 'origin/fix-failing-tests' into fix-fail…
wwills2 Oct 10, 2024
c2c3192
docs: add testneta instructions
TheLastCicada Oct 11, 2024
4ddb32d
docs: how to setup testneta
TheLastCicada Oct 11, 2024
0133ac5
docs: document new log levels
TheLastCicada Oct 11, 2024
711d792
docs: improved testneta docs
TheLastCicada Oct 11, 2024
57a004d
ci: test environment improvements
TheLastCicada Oct 11, 2024
f0cf847
feat: added simulator check to getSyncStatus
wwills2 Oct 15, 2024
51cff85
Merge remote-tracking branch 'origin/fix-failing-tests' into fix-fail…
wwills2 Oct 15, 2024
317eff3
Merge pull request #1194 from Chia-Network/fix-failing-tests
wwills2 Oct 15, 2024
c4a1e0b
Merge pull request #1195 from Chia-Network/chia-tools
TheLastCicada Oct 15, 2024
c7d57bf
fix: registry sync stopping pre-maturely
wwills2 Oct 16, 2024
a78a6cb
fix: improve log messages to include registryId for easier debugging
TheLastCicada Oct 16, 2024
43dc5e3
Merge pull request #1196 from Chia-Network/improve-logging-id-stuff
TheLastCicada Oct 16, 2024
6093019
fix: a few more logging improvments
TheLastCicada Oct 16, 2024
cf8118a
Merge pull request #1197 from Chia-Network/more-logging-ids
TheLastCicada Oct 16, 2024
d8ef2dd
docs: document serving datalayer dat files
TheLastCicada Oct 17, 2024
042a356
docs: document serving datalayer dat files improvements
TheLastCicada Oct 18, 2024
4ec2af8
docs: more clarity about static IP addresses
TheLastCicada Oct 18, 2024
8c8e345
Merge pull request #1198 from Chia-Network/s3-http-docs
TheLastCicada Oct 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/tasks/sync-registries.js
Original file line number Diff line number Diff line change
@@ -184,7 +184,7 @@ const syncOrganizationAudit = async (organization) => {

if (!rootHistory?.length) {
logger.warn(
`Could not find root history for ${organization.name} (orgUid ${organization.orgUid}), something is wrong and the sync for this organization will be paused until this is resolved.`,
`Could not find root history for ${organization.name} (orgUid ${organization.orgUid}, registryId ${organization.registryId}), something is wrong and the sync for this organization will be paused until this is resolved.`,
);
return;
}