[
https://issues.apache.org/jira/browse/BEAM-13623?focusedWorklogId=706312&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-706312
]
ASF GitHub Bot logged work on BEAM-13623:
-----------------------------------------
Author: ASF GitHub Bot
Created on: 10/Jan/22 16:59
Start Date: 10/Jan/22 16:59
Worklog Time Spent: 10m
Work Description: AydarZaynutdinov commented on a change in pull request
#16469:
URL: https://github.com/apache/beam/pull/16469#discussion_r781376441
##########
File path: playground/backend/internal/code_processing/code_processing.go
##########
@@ -189,8 +189,13 @@ func Process(ctx context.Context, cacheService
cache.Cache, lc *fs_tool.LifeCycl
return
}
if !ok {
- if runOutput.Error != nil {
- runError.Write([]byte(runOutput.Error.Error()))
+ // If unit test has some error then error output is placed as
RunOutput
+ if isUnitTest {
Review comment:
I guess, no. I removed `runOutput.Error` field from
`run_output_writer.go`. We do not need this field. This error
(`runOutput.Error.Error()`) exists in `errorChannel` and be thrown to the log
without using `runError.Write([]byte(runOutput.Error.Error()))`. So we do not
need this one:
```
if runOutput.Error != nil {
runError.Write([]byte(runOutput.Error.Error()))
```
This PR is to receive an error's output that occurs during the processing of
the unit tests. This error output is placed in the cache as a `RunOutput` so we
need to get this one and keep it to the `runError` value but only if it is a
unit tests (`isUnitTest`) and there is an error during processing (`!ok`)
--
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]
Issue Time Tracking
-------------------
Worklog Id: (was: 706312)
Time Spent: 40m (was: 0.5h)
> [Playground] During unit tests failing there is no any output
> -------------------------------------------------------------
>
> Key: BEAM-13623
> URL: https://issues.apache.org/jira/browse/BEAM-13623
> Project: Beam
> Issue Type: Bug
> Components: beam-playground
> Reporter: Aydar Zaynutdinov
> Assignee: Aydar Zaynutdinov
> Priority: P3
> Labels: beam-playground-backend
> Time Spent: 40m
> Remaining Estimate: 0h
>
> Run some unit test that contains an error on the Playground.
> {*}Expected result{*}: there is an error output.
> {*}Actual result{*}: there is no error output.
--
This message was sent by Atlassian Jira
(v8.20.1#820001)