Skip to content

Commit

Permalink
Docker fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
kukabi committed Nov 27, 2024
1 parent ed9d932 commit 472b5ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions _docker/base/01-subvt-backend-lib.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ RUN cp target/release/subvt-app-service /subvt/bin/ \
&& cp target/release/subvt-onekv-updater /subvt/bin/ \
&& cp target/release/subvt-referendum-updater /subvt/bin/ \
&& cp target/release/subvt-report-service /subvt/bin/ \
&& cp target/release/subvt-session-validator-performance-updater /subvt/bin/ \
&& cp target/release/subvt-telegram-bot /subvt/bin/ \
&& cp target/release/subvt-telemetry-processor /subvt/bin/ \
&& cp target/release/subvt-validator-details-server /subvt/bin/ \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ CREATE TABLE IF NOT EXISTS sub_session_validator_performance

CREATE INDEX IF NOT EXISTS sub_session_validator_performance_idx_validator_account_id
ON sub_session_validator_performance (validator_account_id);
CREATE INDEX IF NOT EXISTS sub_session_validator_performance_idx_session_index
ON sub_session_validator_performance (session_index);
CREATE INDEX IF NOT EXISTS sub_session_validator_performance_idx_session_index
ON sub_session_validator_performance (session_index);
CREATE INDEX IF NOT EXISTS sub_session_validator_performance_idx_validator_account_id_session_index_desc
ON sub_session_validator_performance (validator_account_id, session_index DESC);
CREATE INDEX IF NOT EXISTS sub_session_validator_performance_idx_validator_account_id_active_validator_index_session_index_desc
Expand Down

0 comments on commit 472b5ac

Please sign in to comment.