Skip to content

Commit

Permalink
Apply suggestions from code review.
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerluan committed Dec 3, 2021
1 parent 3314c26 commit 491ba71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/fetch_app_status.rb
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def get_build_info(app)

builds.map do |build|
{
"version" => build.version,
"uploaded_data" => build.uploaded_date,
"status" => build.processing_state,
version: build.version,
uploaded_data: build.uploaded_date,
status: build.processing_state,
}
end
end
Expand Down
3 changes: 1 addition & 2 deletions src/poll-itc.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,9 @@ function _checkAppStatus(currentAppInfo) {
}
})

// Store latest build info in database
db.set(buildInfoKey, newBuildInfo)
}

// Store latest build info in database
}

if (!pollIntervalSeconds) {
Expand Down

0 comments on commit 491ba71

Please sign in to comment.