Skip to content

Typos #3939

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

Open
wants to merge 1 commit into
base: v8/develop
Choose a base branch
from
Open

Typos #3939

Show file tree
Hide file tree
Changes from all commits
Commits
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 blazegraph-migration/job_pool.sh
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function job_pool_init()
local pool_size=$1
local echo_command=$2

# set the global attibutes
# set the global attributes
job_pool_pool_size=${pool_size:=1}
job_pool_echo_command=${echo_command:=0}

Expand Down
2 changes: 1 addition & 1 deletion installer/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ install_sql() {
if [[ -d "/var/lib/mysql/operationaldb/" ]]; then
read -p "Old operationaldb repository detected. Would you like to overwrite it ? (Default: No) [Y]es [N]o [E]xit " choice
case "$choice" in
[yY]* ) perform_step $(MYSQL_PWD=$oldpassword $sql -u root -e "DROP DATABASE IF EXISTS operationaldb;") "Overwritting slq repository";;
[yY]* ) perform_step $(MYSQL_PWD=$oldpassword $sql -u root -e "DROP DATABASE IF EXISTS operationaldb;") "Overwriting slq repository";;
[eE]* ) text_color $RED"Installer stopped by user"; exit;;
* ) text_color $GREEN"Keeping previous sql repository"; NEW_DB=FALSE;;
esac
Expand Down
2 changes: 1 addition & 1 deletion src/service/sync-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class SyncService {

async runSync(blockchainId) {
// TODO: Add telemetry
// TODO: Add onchain registring how far you have synced DKG
// TODO: Add onchain registering how far you have synced DKG
this.logger.debug(`[DKG SYNC] Running sync for blockchain ${blockchainId}`);
const syncOperationId = uuidv4();
this.operationIdService.emitChangeEvent(
Expand Down