Skip to content

Commit

Permalink
fix typo in example and pin protoc version in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Sep 19, 2021
1 parent 6d444a3 commit 90d875a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/jvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:

steps:
- name: Install Protoc
uses: arduino/setup-protoc@master
uses: arduino/setup-protoc@v1
with:
version: '3.11.4'
- name: Checkout Git branch
uses: actions/checkout@v2
- name: Set up JDK 1.8
Expand Down
2 changes: 1 addition & 1 deletion jvm/examples/src/main/kotlin/ParallelQuery.kt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ fun main() {

val start = System.currentTimeMillis()
val deferred =
(1..2).map { month ->
(1..12).map { month ->
GlobalScope.async {
val sql =
"SELECT passenger_count, " +
Expand Down

0 comments on commit 90d875a

Please sign in to comment.