Skip to content

Commit

Permalink
Merge pull request #2035 from w3f/will-clean-core
Browse files Browse the repository at this point in the history
bump version to v2.6.84
  • Loading branch information
wpank authored Oct 14, 2022
2 parents b99e57d + adb9d6a commit cd7f25b
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/otv-backend/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
description: 1K Validators Backend
name: otv-backend
version: v2.6.83
version: v2.6.84
apiVersion: v2
2 changes: 1 addition & 1 deletion charts/otv-backend/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ resources:

image:
repo: web3f/otv-backend
tag: 2.6.83
tag: 2.6.84

certificate:
enabled: true
Expand Down
4 changes: 2 additions & 2 deletions helmfile.d/10-otv-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ releases:
namespace: kusama
{{ if eq .Environment.Name "production" }}
chart: w3f/otv-backend
version: v2.6.83
version: v2.6.84
{{ else }}
chart: ../charts/otv-backend
{{ end }}
Expand All @@ -27,7 +27,7 @@ releases:
namespace: polkadot
{{ if eq .Environment.Name "production" }}
chart: w3f/otv-backend
version: v2.6.83
version: v2.6.84
{{ else }}
chart: ../charts/otv-backend
{{ end }}
Expand Down
2 changes: 1 addition & 1 deletion helmfile.d/config/kusama/otv-backend-ci.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ config: |
}
},
"matrix": {
"enabled": true,
"enabled": false,
"baseUrl": "https://matrix.org",
"room": "!mdugGIKqSTweIOpTlA:web3.foundation",
"userId": "@1kv-stats:matrix.org"
Expand Down
1 change: 0 additions & 1 deletion packages/common/src/db/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2956,7 +2956,6 @@ export default class Db {
}

if (!data || data?.addr != addr || data?.city != city) {
logger.info(JSON.stringify(data ? data : null));
const location = new this.locationModel({
name,
addr,
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/constraints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ export const checkLatestClientVersion = async (
`{latestRelease} Could not set release validity for ${
candidate.name
} - version: ${candidate.version} Latest release: ${
latestRelease.name
latestRelease?.name
} now: ${Date.now()}`
);
return true;
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/scorekeeper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -590,9 +590,9 @@ export default class ScoreKeeper {
await startEraPointsJob(this.config, this.db, this.chaindata);
await startActiveValidatorJob(this.config, this.db, this.chaindata);
await startInclusionJob(this.config, this.db, this.chaindata);
// await startSessionKeyJob(this.config, this.db, this.chaindata);
await startSessionKeyJob(this.config, this.db, this.chaindata);
// await startUnclaimedEraJob(this.config, this.db, this.chaindata);
// await startValidatorPrefJob(this.config, this.db, this.chaindata);
await startValidatorPrefJob(this.config, this.db, this.chaindata);
// if (this.claimer) {
// await startRewardClaimJob(
// this.config,
Expand Down

0 comments on commit cd7f25b

Please sign in to comment.