This is an automated email from the ASF dual-hosted git repository.

pabloem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/master by this push:
     new 745bee1  [BEAM-13680] Fixed code_repository (added pipelineUuid to 
RunCodeResult when status is "Finished")
     new ba97ea2  Merge pull request #16545 from [BEAM-13680] [Playground] 
[Bugfix] Fix tests on frontend
745bee1 is described below

commit 745bee1a3456c0e79a0b59d1e947e04c333ba739
Author: Alexander <alexander.zhurav...@akvelon.com>
AuthorDate: Tue Jan 18 14:15:49 2022 +0400

    [BEAM-13680] Fixed code_repository (added pipelineUuid to RunCodeResult 
when status is "Finished")
---
 .../lib/modules/editor/repository/code_repository/code_repository.dart   | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/playground/frontend/lib/modules/editor/repository/code_repository/code_repository.dart
 
b/playground/frontend/lib/modules/editor/repository/code_repository/code_repository.dart
index 9e86f01..8f354ce 100644
--- 
a/playground/frontend/lib/modules/editor/repository/code_repository/code_repository.dart
+++ 
b/playground/frontend/lib/modules/editor/repository/code_repository/code_repository.dart
@@ -166,6 +166,7 @@ class CodeRepository {
         final log = responses[1];
         final error = responses[2];
         return RunCodeResult(
+          pipelineUuid: pipelineUuid,
           status: status,
           output: prevOutput + output.output + error.output,
           log: prevLog + log.output,

Reply via email to