gemini-code-assist[bot] commented on code in PR #38356:
URL: https://github.com/apache/beam/pull/38356#discussion_r3173615563


##########
playground/backend/containers/go/build.gradle:
##########
@@ -88,7 +88,7 @@ docker {
    buildArgs(
          ['BASE_IMAGE'   : project.rootProject.hasProperty(["base-image"]) ?
                project.rootProject["base-image"] :
-               "golang:1.25",
+               "golang:1.26",

Review Comment:
   ![high](https://www.gstatic.com/codereviewagent/high-priority.svg)
   
   The `BASE_IMAGE` configuration contains two errors: the Go version `1.26` is 
non-existent and will cause build failures (likely should be `1.22`), and the 
`hasProperty` check on line 89 (and 92) incorrectly uses a list 
`["base-image"]` instead of a string, breaking the property override logic.
   
   ```
                 "golang:1.22",
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to